We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 105f323 commit 50ff248Copy full SHA for 50ff248
README.md
@@ -1,2 +1,16 @@
1
# jQuery-Before-Ready
2
Add a jQuery .ready() handler that will execute before existing .ready() handlers.
3
+
4
+jQuery exeutes .ready() functions in source code order. Sometimes we need to execute a .ready() function early.
5
6
+<b>Instructions</b>
7
8
+Load jquery-before-ready.js immediatley after jQuery, as as early as possible.
9
10
+Use .beforeReady() instead of .ready()
11
12
+<b>Example</b>
13
14
+$.beforeReady(function() {
15
+ alert("Ere I am JH")
16
+});
0 commit comments