Contains two transparent stickers, one for driving in Europe and one for use in the UK
Speedright Safety device is a simple transparent speedo converter that helps you to drive at the correct speed in Europe or the UK. It sticks neatly to your windscreen without any messy adhesive and is re-usable, time and time again.
/* To use this, add the entire script below as a Custom HTML tag in GTM that fires on every page. Wrap the entire script in plain script tags. Fire the tag on every page.
*/
// Update this block of variables with your information.
var entityName = "Halfords";
var entityType = "Organization"
var machineId = "/m/07h56x ";
var wikipedia = "https://en.wikipedia.org/wiki/Halfords";
var sameAsHTML = "" +
entityName +
"" +
(wikipedia.length != 0 ? "":"");
var regExNameSearch = new RegExp(entityName,"g");
// By default, this adds the MREID link to all brand-mentions in P tags. If you want to expand the scope, add other tag names seperated by commas within find().
jQuery(document).ready(function(){
jQuery("body").find("p").each(function() {
jQuery(this).html(jQuery(this).html().replace(regExNameSearch,sameAsHTML));
});
});