pjb3 (owner)

Revisions

gist: 208536 Download_button fork
public
Public Clone URL: git://gist.github.com/208536.git
Embed All Files: show embed
index.html #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
  <head>
    <title>JQuery and links - strange situation</title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript">
    jQuery(function($){
      $('#inner a').click(function(){
         console.log( 'achtung' );
      });
    })
    </script>
  </head>
  <body>
    <div id="inner">
      some text <a href="#contacts">link1</a>
    </div>
    <a href="http://anotherlink.com">link2</a>
  </body>
</html>