Switch to full style
JQuery Examples
Post a reply

Select all links with a target attribute value NOT _blank

Sat Dec 29, 2012 9:02 pm

Select links with target not equal blank
Code:

<html>

<
head>
<
title>Select links</title>
<
script src="jquery-1.8.3.js"></script>
<script>
// Waits until the all document is loaded.
$(document).ready(function(){
// Do something when any button is clicked
  $("button").click(function(){
  // Hide all links that doesn't open in blank
    $("a[target!='_blank']").hide();
  });
}); 

</script>

</head>
<body>
 
 <a href="www.codemiles.com" target="_blank">Click me-1</a>
 <a href="www.codemiles.com" >Click me-2</a>
 <a href="www.codemiles.com" >Click me-3</a>
 <a href="www.codemiles.com" target="_blank">Click me-4</a>
 
  <button >Hide</button>

</body>
</html>




Post a reply
  Related Posts  to : Select all links with a target attribute value NOT _blank
 select query example in php     -  
 Select odd rows from table     -  
 Change the content of select tag using JQuery     -  
 Javascript Validation On Multiple Select Lists     -  
 Javascript select menu validation issue     -  
 SELECT-Group by and Order by,Having Clause,count(),Joins     -  
 Encrypt/Decrypt a file from source file to target file.     -  
 usage of rev attribute     -  
 Usage of the before CSS attribute     -  
 Usage of the after CSS attribute     -  

Topic Tags

JQuery Selector, JQuery Hide