Sat Dec 29, 2012 9:02 pm
<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>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.