if ($.get("test")) {
document.getElementById("myDIV").innerHTML = "How are you?";
}
// тут какой то код..
varP.setAttribute("id", "1");
// а ссылка в это время www.site.com/file.js?id=1
if(window.location.search.indexOf('test=') != -1){
// условие сработает, если есть "test=" в "www.site.com/?test=lalala"
}
var getParams;
// Если get-параметров много
if(window.location.search.indexOf('&') != -1){
getParams = window.location.search.split('&').map(function(item){
var currentValue = item.split('=');
return {[currentValue[0]]: currentValue[1]}
});
// если один
} else {
var currentValue = window.location.search.replace(/\?/, '').split('=');
getParams = {[currentValue[0]]: currentValue[1]};
}
console.log(getParams);