Hello
I have a link on my website where the link was set to my old betapark url and since going live it doesnt work and goes to page unavailable.
Problem iv got is I can't find where to change the link info.
Found it in source code but can't find it on bp system
$(document).ready(function () {
$("#quote-btn").on("click", function () {
Cookies.set('regNo', $("#reg-no").val(), { expires: 30 })
if ($("#reg-no").val()) {
window.location.href = "http://bp239.betapark.co.uk/quote-reg.html";
}else{
$("#reg-no").toggleClass('empty');
}
});
});
Does anyone know where i can change this or just point me in the right direction
I have a link on my website where the link was set to my old betapark url and since going live it doesnt work and goes to page unavailable.
Problem iv got is I can't find where to change the link info.
Found it in source code but can't find it on bp system
$(document).ready(function () {
$("#quote-btn").on("click", function () {
Cookies.set('regNo', $("#reg-no").val(), { expires: 30 })
if ($("#reg-no").val()) {
window.location.href = "http://bp239.betapark.co.uk/quote-reg.html";
}else{
$("#reg-no").toggleClass('empty');
}
});
});
Does anyone know where i can change this or just point me in the right direction
Comment