Skip to content

Instantly share code, notes, and snippets.

@fprochazka
Created July 4, 2011 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fprochazka/1063275 to your computer and use it in GitHub Desktop.
Save fprochazka/1063275 to your computer and use it in GitHub Desktop.
Inicializace jQuery
var init = function () {
// tělo funkce
};
if ($.browser.webkit) {
$(window).load(init);
} else {
$(document).ready(init);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment