Advertisement
kavallo

Abrir URL Desde Javascript

May 15th, 2018
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $("#btnNavegarURL").click(function () {
  2.         _url = $("#txtUrl").val();
  3.         if (_url != "") {
  4.             _url = _url.match(/^https?:/) ? _url : '//' + _url;
  5.             window.open(_url, "_blank");
  6.         }
  7.        
  8.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement