Answers for "jquery check url"

5

jquery get current url

var currentURL = $(location).attr('href'); //jQuery solution
var currentURL = window.location.href; // raw javascript
Posted by: Guest on July-23-2019
7

jquery check if url contains string

//If URL contains "mystring"
if (window.location.href.indexOf("mystring") > -1) {

}
Posted by: Guest on June-05-2020
1

jquery get url

var currentURL = $(location).attr('href'); 
var currentURL = window.location.href;
Posted by: Guest on July-27-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language