Revisions

gist: 207904 Download_button fork
public
Public Clone URL: git://gist.github.com/207904.git
Embed All Files: show embed
HTML #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
    <head>
        
        <!-- jQuery -->
        <script src="path/to/jquery.js"></script>
 
        <!-- jQuery mod (from StackOverflow) -->
        <script>
            ... put it here ... (or load it from another file, with src="...")
        </script>
        
        <!-- Your jQuery stuff -->
        <script>
            jQuery(document).ready(function(){
                // do stuff here...
            });
        </script>
        
    </head>
    <body>
    
    </body>
</html>