var ProjectList = View.extend({ el: "#projectList", events: { "mouseenter td.border": 'spinOn', "mouseleave td.border": 'spinOff', }, initialize: function(){ }, spinOn: function(e){ var iframe = $(e.currentTarget).find("iframe").get('0') if (! iframe) return iframe.contentWindow.postMessage("spin-on", window.location.origin) }, spinOff: function(e){ var iframe = $(e.currentTarget).find("iframe").get('0') if (! iframe) return iframe.contentWindow.postMessage("spin-off", window.location.origin) } })