Answers for "jquery get location"

1

jquery get url

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

jquery get location of user

$("#find_btn").click(function () { //user clicks button
	if ("geolocation" in navigator){ //check geolocation available 
		//try to get user current location using getCurrentPosition() method
		navigator.geolocation.getCurrentPosition(function(position){ 
				$("#result").html("Found your location <br />Lat : "+position.coords.latitude+" </br>Lang :"+ position.coords.longitude);
			});
	}else{
		console.log("Browser doesn't support geolocation!");
	}
});
Posted by: Guest on September-14-2020
2

jquery get left position

var position = p.position();
var left = position.left; '<-- left value for p
Posted by: Guest on May-19-2020
0

jquery get URL slug

var pathname = window.location.pathname;
Posted by: Guest on June-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language