Statistics
| Branch: | Revision:

blinker / firefox.plugin / data / tutorial / tutorial.js @ master

History | View | Annotate | Download (214 Bytes)

1
jQuery(document).ready(function($) {
2
        jQuery('button').click(function(event) {
3
                event.preventDefault();
4
                var clnum = jQuery('.clicknumber').html()
5
                clnum++; 
6
                jQuery('.clicknumber').html(clnum);
7
        });
8
});