Your IP : 216.73.216.84


Current Path : /home/helpink/www/modules/mod_jbusiness_offers/assets/js/
Upload File :
Current File : /home/helpink/www/modules/mod_jbusiness_offers/assets/js/script.js

function addCoordinatesToUrl(position){

    var latitude = position.coords.latitude;
    var longitude = position.coords.longitude;

    var newURLString = window.location.href;
    newURLString += ((newURLString.indexOf('?') == -1) ? '?' : '&');
    newURLString += "latitude="+latitude;
    newURLString += ((newURLString.indexOf('?') == -1) ? '?' : '&');
    newURLString += "longitude="+longitude;

    window.location.href = newURLString;    // The page will redirect instantly
}

function goToLink(link){
    document.location.href=link;
}