var ProfileView = View.extend({ initialize: function() { }, load: function() { var classes = ['one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten', 'eleven', 'twelve', 'thirteen']; $(".bio").addClass(choice(classes)); $("td.border").each(function() { var iframe = $(this).find("iframe").get('0') if (! iframe) return $(this).on({ mouseenter: function(e){ iframe.contentWindow.postMessage("spin-on", window.location.origin) }, mouseleave: function(e){ iframe.contentWindow.postMessage("spin-off", window.location.origin) } }) }) } })