Skip to content

Instantly share code, notes, and snippets.

@thedaviddias
Created November 12, 2012 14:58
Show Gist options
  • Save thedaviddias/4059838 to your computer and use it in GitHub Desktop.
Save thedaviddias/4059838 to your computer and use it in GitHub Desktop.
jQuery Mobile: Expanding a collapsible + scroll top
$("div.ui-collapsible-set").live("expand", function(e) {
var top = $(e.target).offset().top;
if ($(window).scrollTop() > top)
$(window).scrollTop(top);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment