Skip to content

Instantly share code, notes, and snippets.

@erming
Last active August 29, 2015 14:00
Show Gist options
  • Save erming/11193183 to your computer and use it in GitHub Desktop.
Save erming/11193183 to your computer and use it in GitHub Desktop.
jquery.toTop.js
/*!
* bringToTop
* https://gist.github.com/erming/11193183
*/
(function($) {
var highest = 1;
$.fn.bringToTop = function() {
return this.css('z-index', highest++);
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment