Skip to main content

Bug Tracker

Side navigation

Ticket #5675: test.html


File test.html, 0.6 KB (added by heyow, December 18, 2009 12:49PM UTC)
<html>
  <head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
    
    <script type='text/javascript'>
       $(function(){
        $('#test').live('something', function(event, data){
          console.log(data)
        }).trigger('something', {key: 'value'})
        
        $('#test').bind('something_else', function(event, data){
          console.log(data)
        }).trigger('something_else', {key: 'value'})
       })
     </script>
  </head>
  <body>
    <div id="test">test</div>
  </body>
</html>

Download in other formats:

Original Format