Quantcast
Channel: MyClassBook
Viewing all articles
Browse latest Browse all 368

Load Different JavaScript for Different Browsers

$
0
0

Hi friends, in this article we are going to learn how we can load different JavaScript for different browsers. Few days ago I was trying to implement back button in one of my html page. The page on which I was trying to implement Back button was loading from one of the auto redirected page.

So this back button was working on Chrome browser but not on Internet Explorer. Chrome is enough intelligent browser and it can detect that the page is from one redirected page. So when we click on back button it will land you to 2 pages back. But Internet Explorer cant have this intelligence.

When I was trying to click on Back button in Internet Explorer, it was loading previous page. As previous page was having auto redirect code so it again goes to same page which was having Back button. So using Back button in Internet Explorer was producing never ending loop. So I thought to implement one trick which will load 2 page back button in IE. This can be implemented by loading Browser specific JavaScript. Using this method we can load different JavaScript for different browsers.

Browser Specific JavaScript

Here we are using Back button which will call goBack() onclick event.

 <input type="button" onclick="goBack()" value="BACK" />  

We all know that we use window.history.go(-1); for loading previous page. But we need window.history.go(-2); to load in Internet Explorer. We can use following code which will load these actions depending on which browsers you are using.

 <script>  
      function goBack() {  
       // Internet Explorer 6-11  
       var isIE = /*@cc_on!@*/false || !!document.documentMode;  
       if(isIE)  
       {  
         window.history.go(-2);  
       }  
       else  
       {  
         window.history.go(-1);  
       }  
      }  
 </script>  

This script can be used to load window.history.go(-2); for IE browser and window.history.go(-1); for browsers other than IE.

If you like this article, please share it with your friends and like or facebook page for future updates. Subscribe to our newsletter to get notifications about our updates via email. If you have any queries, feel free to ask in the comments section below. Have a nice day!

The post Load Different JavaScript for Different Browsers appeared first on MyClassBook.


Viewing all articles
Browse latest Browse all 368

Trending Articles