Aspdotnet-Suresh

aspdotnet-suresh offers C#.net articles and tutorials,csharp dot net,asp.net articles and tutorials,VB.NET Articles,Gridview articles,code examples of asp.net 2.0 /3.5,AJAX,SQL Server Articles,examples of .net technologies

jQuery Open All External Links in New Window

Aug 24, 2012
Introduction

Here I will explain how to use jQuery to open all external links in new window or open all external links in new window using jQuery

Description:
  
In previous article I explained
open all hyperlinks in new window, expand textbox on focus and disable right click on image using JQuery and many articles relating to JQuery. Now I will explain how to open external links in new window using JQuery in asp.net.

Previous post open all hyperlinks in new window will open all internal and external links in new window. In many situations everybody prefer to open their website internal links in same window and external links (other website links) should be open in new window

To implement this concept we need to write code as shown below


<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>JQuery open all hyperlinks in new window</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function() {
$("a[href^='http:']:not([href*='" + window.location.host + "'])").click(function() {
window.open($(this).prop('href'), '', 'height=600,width=700');
return false
});
});
</script>
</head>
<body>
<div>
<a href="http://www.aspdotnet-suresh.com/search/label/Asp.net">Aspdotnet-Suresh</a><br />
<a href="http://www.google.com">Google</a><br />
<a href="http://www.bing.com">Bing</a><br />
</div>
</body>
</html>
If you observe above code in header section I wrote code to open external links in new window and internal links in same window.

Demo

If you want to check demo click on Aspdotnet-Suresh link it will open in same window and click on google or bing links it will open in new windows 



If you enjoyed this post, please support the blog below. It's FREE!

Get the latest Asp.net, C#.net, VB.NET, jQuery, Plugins & Code Snippets for FREE by subscribing to our Facebook, Twitter, RSS feed, or by email.

subscribe by rss Subscribe by RSS subscribe by email Subscribe by Email

0 comments :

Give your Valuable Comments

Note: Only a member of this blog may post a comment.

© 2015 Aspdotnet-Suresh.com. All Rights Reserved.
The content is copyrighted to Suresh Dasari and may not be reproduced on other websites without permission from the owner.