Skip to content

Instantly share code, notes, and snippets.

@Fonsan
Created December 25, 2012 18:42
Show Gist options
  • Save Fonsan/4374737 to your computer and use it in GitHub Desktop.
Save Fonsan/4374737 to your computer and use it in GitHub Desktop.
jQuery('.song-name a').each(function() {
var e = $(this)
var frame = $('<iframe/>')
frame.attr('src', e.attr('href'));
frame.attr('height', '200px')
frame.attr('width', '500px')
e.parent().parent().after(frame);
var w = frame.first()[0].contentWindow;
w.addEventListener('load', function() {
w.scroll(0,300)
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment