Skip to contentTel: 0161 980 2858
Fax: 0161 903 9048
Mobile: 07710 784 412
Email: enquiries@artefact-interiors.com
Find Us
Ash Farm, Ash Lane,
Hale Barns, Cheshire,
WA15 8PJ, United Kingdom
/** Custom - IE Jitter Fix
*
***/if(navigator.userAgent.match(/MSIE 10/i) || navigator.userAgent.match(/Trident\/7\./) || navigator.userAgent.match(/Edge\/12\./)) {
$('body').on("mousewheel", function () {
event.preventDefault();
var wd = event.wheelDelta;
var csp = window.pageYOffset;
window.scrollTo(0, csp - wd);
});
}