Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.86 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <head>
  5.     <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
  6.        
  7.         <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
  8.    
  9.     <!-- uncommenting the next line prevents the alert from showing up -->
  10.     <!-- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js">  -->
  11.  
  12.         <script type="text/javascript">
  13.          
  14.         $( document ).ready(function() {
  15.  
  16.         $("#show_more_link").click(function(e) {
  17.             alert("on click running");
  18.             e.preventDefault();
  19.         });
  20.     });
  21.     </script>  
  22. </head>
  23.  
  24. <body>
  25.     <a id="show_more_link" href="#">click here</a>
  26. </body>
  27.  
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement