Get Latitude and Longitude from GeoLocation

How Can I Get a latitude and longitude of the User and display alert huh? already added the plugion do cordova .

navigator.geolocation.getCurrentPosition(function(pos){
			alert(pos.coords.latitude + ',' + pos.coords.longitude)
		},function(err){
		
		});