JQuery JavaScript Tutorial

< html>
  
    
    
var tmpExample = {
  ready : function() {
    $('ul#myStyle li a').click(
      function($e) {
        $e.preventDefault();
        window.open(this.href, 'FavoriteLink', '');
      }
    );
  }
};
$(document).ready(tmpExample.ready);
    
    
ul {
    list-stlye: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
    
  
  
    
        
  • rntsoft

  •         
  • Apple

  •         
  • jQuery

  •