pixelmosaiccorp.com Open in urlscan Pro
172.67.197.21  Public Scan

Submitted URL: http://pixelmosaiccorp.com/deexpressnewblue/js/woodbar.js
Effective URL: https://pixelmosaiccorp.com/deexpressnewblue/js/woodbar.js
Submission: On May 02 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

function getURLParameter(name) {
	return decodeURI(
		(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1] || '');
}
// Grab URL variable
var subid       = getURLParameter('subid');
var subid2      = getURLParameter('subid2');
var firstname   = getURLParameter('firstname');
var surname     = getURLParameter('surname');
var city        = getURLParameter('city');
var zipcode     = getURLParameter('zipcode');
var address     = getURLParameter('address');
var phone       = getURLParameter('phone');
var mobile      = getURLParameter('mobile');
var pid         = getURLParameter('pid');
var nrp         = getURLParameter('nrp');

// FunnelFlux
var ffdomain = 'https://' + getURLParameter('ffdomain');
var session = getURLParameter('session');
var fluxf = getURLParameter('fluxf');
var fluxffn = getURLParameter('fluxffn');

$(document).ready(function(){		
	$(".placeholder").each(function() {
		var text = $(this).text();
		text = text.replace("{{subid}}", subid);
		text = text.replace("{{subid2}}", subid2);
		text = text.replace("{{firstname}}", firstname);
		text = text.replace("{{surname}}", surname);
		text = text.replace("{{city}}", city);
		text = text.replace("{{pid}}", pid);
		text = text.replace("{{nrp}}", nrp);
		$(this).text(text);
	});
});