<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">(function ($) {
	$(document).ready(function () {
		// Get the button element
		var backToTopBtn = $('#back-to-top-btn');
		// When the user scrolls down 20px from the top of the document, show the button
		$(window).scroll(function () {
			if ($(this).scrollTop() &gt; 20) {
				backToTopBtn.fadeIn();
			} else {
				backToTopBtn.fadeOut();
			}
		});
		// When the user clicks the button, scroll to the top of the page
		backToTopBtn.click(function () {
			$('html, body').animate({ scrollTop: 0 }, 800);
			return false;
		});
		/**
		 * Home Page  Banner Carousel
		 */
		$(".home-banner-carousel").owlCarousel({
			loop: true,
			dots: true,
			nav: false,
			autoplay: true,
			autoplayTimeout: 7000,
			animateOut: "fadeOut",
			animateIn: "fadeIn",
			smartSpeed: 1000,
			mouseDrag: true,
			touchDrag: true,
			responsiveClass: true,
			responsive: {
				0: {
					items: 1,
				},
				600: {
					items: 1,
				},
				1000: {
					items: 1,
				},
			},
		});
		// .on("changed.owl.carousel", function (event) {
		// 	AOS.refresh();
		// });
		/**
		 * Home Page  Product Carousel
		 */
		$(".home-product-carousel").owlCarousel({
			loop: false,
			dots: false,
			margin: 0,
			nav: true,
			animateOut: "fadeOut",
			animateIn: "fadeIn",
			smartSpeed: 1000,
			mouseDrag: true,
			touchDrag: true,
			navText: [
				'&lt;div class="prev"&gt;&lt;picture&gt;&lt;img src="./assets/images/home/left-arrow.png" class="img-fluid" alt="Left Arrow"&gt;&lt;/picture&gt;&lt;/div&gt;',
				'&lt;div class="next"&gt;&lt;picture&gt;&lt;img src="./assets/images/home/right-arrow.png" class="img-fluid" alt="Right Arrow"&gt;&lt;/picture&gt;&lt;/div&gt;',
			],
			responsive: {
				0: {
					items: 1,
				},
				768: {
					items: 2,
				},
				1000: {
					items: 4,
				},
			},
		});
		$(".our-expertise-carousel").owlCarousel({
			loop: false,
			dots: false,
			nav: true,
			animateOut: "fadeOut",
			animateIn: "fadeIn",
			smartSpeed: 1000,
			mouseDrag: true,
			touchDrag: true,
			navText: [
				'&lt;div class="prev"&gt;&lt;picture&gt;&lt;img src="./assets/images/home/left-arrow.png" class="img-fluid" alt="Left Arrow"&gt;&lt;/picture&gt;&lt;/div&gt;',
				'&lt;div class="next"&gt;&lt;picture&gt;&lt;img src="./assets/images/home/right-arrow.png" class="img-fluid" alt="Right Arrow"&gt;&lt;/picture&gt;&lt;/div&gt;',
			],
			responsive: {
				0: {
					items: 1,
				},
				768: {
					items: 2,
				},
				1000: {
					items: 4,
				},
			},
		});
		function animateValue(id, start, end, duration) {
			let obj = document.getElementById(id);
			let range = end - start;
			let minTimer = 50;
			let stepTime = Math.abs(Math.floor(duration / range));
			stepTime = Math.max(stepTime, minTimer);
			let startTime = new Date().getTime();
			let endTime = startTime + duration;
			let timer;
			function run() {
				let now = new Date().getTime();
				let remaining = Math.max((endTime - now) / duration, 0);
				let value = Math.round(end - remaining * range);
				// obj.innerHTML = value;
				obj.innerHTML = value + "+";
				if (value == end) {
					clearInterval(timer);
				}
			}
			timer = setInterval(run, stepTime);
			run();
		}
		window.onload = function () {
			let counterWrappers = document.getElementsByClassName("counter-wrapper");
			for (let i = 0; i &lt; counterWrappers.length; i++) {
				let counterNumber =
					counterWrappers[i].getElementsByClassName("counter-number")[0];
				let endValue = parseInt(counterNumber.innerHTML);
				counterNumber.innerHTML = "0";
				counterNumber.id = "counter-number-" + i;
				animateValue("counter-number-" + i, 0, endValue, 1000);
			}
		};
		$(".leadership-carousel").owlCarousel({
			loop: false,
			dots: false,
			margin: 40,
			nav: true,
			navText: [
				'&lt;div class="prev"&gt;&lt;picture&gt;&lt;img src="./assets/images/home/left-arrow.png" class="img-fluid" alt="Left Arrow"&gt;&lt;/picture&gt;&lt;/div&gt;',
				'&lt;div class="next"&gt;&lt;picture&gt;&lt;img src="./assets/images/home/right-arrow.png" class="img-fluid" alt="Right Arrow"&gt;&lt;/picture&gt;&lt;/div&gt;',
			],
			responsive: {
				0: {
					items: 1,
				},
				600: {
					items: 1,
				},
				1000: {
					items: 2,
				},
			},
		});
		$(".leadership-carousel .owl-next").click(function () {
			$(".leadership-carousel .owl-prev").removeClass("disabled");
		});
		$(".leadership-carousel .owl-prev").click(function () {
			var carousel = $(".leadership-carousel").data("owl.carousel");
			var currentIndex = carousel.relative(carousel.current());
			if (currentIndex === 0) {
				$(this).addClass("disabled");
			}
		});
		$(".awards-carousel").owlCarousel({
			loop: false,
			dots: false,
			margin: 40,
			nav: true,
			navText: [
				'&lt;div class="prev"&gt;&lt;picture&gt;&lt;img src="./assets/images/home/left-arrow.png" class="img-fluid" alt="Left Arrow"&gt;&lt;/ picture&gt;&lt;/div&gt;',
				'&lt;div class="next"&gt;&lt;picture&gt;&lt;img src="./assets/images/home/right-arrow.png" class="img-fluid" alt="Right Arrow"&gt;&lt;/ picture&gt;&lt;/div&gt;',
			],
			responsive: {
				0: {
					items: 1,
				},
				600: {
					items: 1,
				},
				1000: {
					items: 3,
				},
			},
		});
		$(".awards-carousel .owl-next").click(function () {
			$(".awards-carousel .owl-prev").removeClass("disabled");
		});
		$(".awards-carousel .owl-prev").click(function () {
			var carousel = $(".awards-carousel").data("owl.carousel");
			var currentIndex = carousel.relative(carousel.current());
			if (currentIndex === 0) {
				$(this).addClass("disabled");
			}
		});
		$(".gallery-items").imagelistexpander({
			prefix: "gallery-",
		});
		// show only first 3 blog items by default
		var numberToShow = 6;
		if ($(".blog-item").length &lt;= numberToShow) {
			$("#show-more-blog, #show-less-blog").hide();
		}
		$(".blog-item:gt(" + (numberToShow - 1) + ")").hide();
		$("#show-more-blog").click(function () {
			$(".blog-item:hidden").show("slow");
			$("#show-more-blog").hide();
			$("#show-less-blog").show();
		});
		$("#show-less-blog").click(function () {
			$(".blog-item")
				.not(":lt(" + numberToShow + ")")
				.hide("slow");
			$("#show-less-blog").hide();
			$("#show-more-blog").show();
		});
		// show only first 3 promotions items by default
		var numberToShow = 30;
		if ($(".promotions-item").length &lt;= numberToShow) {
			$("#show-more-promotions, #show-less-promotions").hide();
		}
		$(".promotions-item:gt(" + (numberToShow - 1) + ")").hide();
		$("#show-more-promotions").click(function () {
			$(".promotions-item:hidden").show("slow");
			$("#show-more-promotions").hide();
			$("#show-less-promotions").show();
		});
		$("#show-less-promotions").click(function () {
			$(".promotions-item")
				.not(":lt(" + numberToShow + ")")
				.hide("slow");
			$("#show-less-promotions").hide();
			$("#show-more-promotions").show();
		});
		// show only first 3 literature items by default
		var numberToShow = 8;
		if ($(".literature-item").length &lt;= numberToShow) {
			$("#show-more-literature, #show-less-literature").hide();
		}
		$(".literature-item:gt(" + (numberToShow - 1) + ")").hide();
		$("#show-more-literature").click(function () {
			$(".literature-item:hidden").show("slow");
			$("#show-more-literature").hide();
			$("#show-less-literature").show();
		});
		$("#show-less-literature").click(function () {
			$(".literature-item")
				.not(":lt(" + numberToShow + ")")
				.hide("slow");
			$("#show-less-literature").hide();
			$("#show-more-literature").show();
		});
		// show only first 3 our-expertise items by default
		var numberToShow = 6;
		if ($(".our-expertise-item").length &lt;= numberToShow) {
			$("#show-more-our-expertise, #show-less-our-expertise").hide();
		}
		$(".our-expertise-item:gt(" + (numberToShow - 1) + ")").hide();
		$("#show-more-our-expertise").click(function () {
			$(".our-expertise-item:hidden").show("slow");
			$("#show-more-our-expertise").hide();
			$("#show-less-our-expertise").show();
		});
		$("#show-less-our-expertise").click(function () {
			$(".our-expertise-item")
				.not(":lt(" + numberToShow + ")")
				.hide("slow");
			$("#show-less-our-expertise").hide();
			$("#show-more-our-expertise").show();
		});
		// show only first 3 blog items by default
		var numberToShow = 9;
		if ($(".testimonial-item").length &lt;= numberToShow) {
			$("#show-more-testimonial, #show-less-testimonial").hide();
		}
		$(".testimonial-item:gt(" + (numberToShow - 1) + ")").hide();
		$("#show-more-testimonial").click(function () {
			$(".testimonial-item:hidden").show("slow");
			$("#show-more-testimonial").hide();
			$("#show-less-testimonial").show();
		});
		$("#show-less-testimonial").click(function () {
			$(".testimonial-item")
				.not(":lt(" + numberToShow + ")")
				.hide("slow");
			$("#show-less-testimonial").hide();
			$("#show-more-testimonial").show();
		});
		// show only first 3 blog items by default
		var numberToShow = 6;
		if ($(".events-item-one").length &lt;= numberToShow) {
			$("#show-more-events-one, #show-less-events-one").hide();
		}
		$(".events-item-one:gt(" + (numberToShow - 1) + ")").hide();
		$("#show-more-events-one").click(function () {
			$(".events-item-one:hidden").show("slow");
			$("#show-more-events-one").hide();
			$("#show-less-events-one").show();
		});
		$("#show-less-events-one").click(function () {
			$(".events-item-one")
				.not(":lt(" + numberToShow + ")")
				.hide("slow");
			$("#show-less-events-one").hide();
			$("#show-more-events-one").show();
		});
		var numberToShow = 3;
		if ($(".events-item").length &lt;= numberToShow) {
			$("#show-more-events, #show-less-events").hide();
		}
		$(".events-item:gt(" + (numberToShow - 1) + ")").hide();
		$("#show-more-events").click(function () {
			$(".events-item:hidden").show("slow");
			$("#show-more-events").hide();
			$("#show-less-events").show();
		});
		$("#show-less-events").click(function () {
			$(".events-item")
				.not(":lt(" + numberToShow + ")")
				.hide("slow");
			$("#show-less-events").hide();
			$("#show-more-events").show();
		});
		//Certification Carousel
		$(".certification-carousel").owlCarousel({
			loop: false,
			dots: false,
			margin: 20,
			nav: true,
			navText: [
				'&lt;div class="prev"&gt;&lt;picture&gt;&lt;img src="./assets/images/home/left-arrow.png" class="img-fluid" alt="Left Arrow"&gt;&lt;/ picture&gt;&lt;/div&gt;',
				'&lt;div class="next"&gt;&lt;picture&gt;&lt;img src="./assets/images/home/right-arrow.png" class="img-fluid" alt="Right Arrow"&gt;&lt;/ picture&gt;&lt;/div&gt;',
			],
			responsive: {
				0: {
					items: 1,
				},
				600: {
					items: 2,
				},
				1000: {
					items: 4,
				},
			},
		});
		$(".certification-carousel .owl-next").click(function () {
			$(".certification-carousel .owl-prev").removeClass("disabled");
		});
		$(".certification-carousel .owl-prev").click(function () {
			var carousel = $(".certification-carousel").data("owl.carousel");
			var currentIndex = carousel.relative(carousel.current());
			if (currentIndex === 0) {
				$(this).addClass("disabled");
			}
		});
		// show only first 3 blog items by default
		var numberToShow = 30;
		if ($(".product-items").length &lt;= numberToShow) {
			$("#show-more, #show-less").hide();
		}
		$(".product-items:gt(" + (numberToShow - 1) + ")").hide();
		$("#show-more-product").click(function () {
			$(".product-items:hidden").show("slow");
			$("#show-more-product").hide();
			$("#show-less-product").show();
		});
		$("#show-less-product").click(function () {
			$(".product-items")
				.not(":lt(" + numberToShow + ")")
				.hide("slow");
			$("#show-less-product").hide();
			$("#show-more-product").show();
		});
		let minusButtons = document.querySelectorAll(".minus-btn");
		let plusButtons = document.querySelectorAll(".plus-btn");
		let quantityFields = document.querySelectorAll(".quantity-field");
		for (let i = 0; i &lt; minusButtons.length; i++) {
			minusButtons[i].addEventListener("click", function () {
				if (quantityFields[i].value &gt; 1) {
					quantityFields[i].value = parseInt(quantityFields[i].value) - 1;
				}
			});
		}
		for (let i = 0; i &lt; plusButtons.length; i++) {
			plusButtons[i].addEventListener("click", function () {
				quantityFields[i].value = parseInt(quantityFields[i].value) + 1;
			});
		}
		// show only first 3 blog items by default
		var numberToShow = 9;
		if ($(".gallery-items").length &lt;= numberToShow) {
			$("#show-more-gallery, #show-less-gallery").hide();
		}
		$(".gallery-items:gt(" + (numberToShow - 1) + ")").hide();
		$("#show-more-gallery").click(function () {
			$(".gallery-items:hidden").show("slow");
			$("#show-more-gallery").hide();
			$("#show-less-gallery").show();
		});
		$("#show-less-gallery").click(function () {
			$(".gallery-items")
				.not(":lt(" + numberToShow + ")")
				.hide("slow");
			$("#show-less-gallery").hide();
			$("#show-more-gallery").show();
		});
		function closeDropdown() {
			var dropdownMenu = document.getElementById("mobile-nav-collapse");
			var selectedItem = dropdownMenu.querySelector(".selected");
			var dropdownToggle = document.getElementById("mobile-nav-dropdown");
			// close the dropdown
			dropdownMenu.classList.remove("show");
			// show the selected item
			dropdownToggle.innerHTML = selectedItem.innerHTML;
		}
		// add an onclick event listener to each dropdown item
		var dropdownItems = document.querySelectorAll(
			"#mobile-nav-collapse .nav-link"
		);
		dropdownItems.forEach(function (item) {
			item.addEventListener("click", function () {
				// add the 'selected' class to the clicked item
				dropdownItems.forEach(function (item) {
					item.classList.remove("selected");
				});
				this.classList.add("selected");
				// close the dropdown and show the selected item
				closeDropdown();
			});
		});
		var url = window.location.href;
		$('nav a[href="' + url + '"]').addClass("active");
		var tooltipTriggerList = [].slice.call(
			document.querySelectorAll('[data-bs-toggle="tooltip"]')
		);
		var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
			return new bootstrap.Tooltip(tooltipTriggerEl);
		});
		document.addEventListener('DOMContentLoaded', function() {
		// request the quotes 
		const fInput = document.getElementById('myFile');
		fInput.addEventListener('change', handleFileSelect);
		});
		function handleFileSelect(event) {
			const file = event.target.files[0];
			const reader = new FileReader();
			reader.onload = function (event) {
				const imgPreview = document.getElementById('img-preview');
				imgPreview.style.display = 'block';
				imgPreview.src = event.target.result;
			};
			reader.readAsDataURL(file);
		}
		document.addEventListener('DOMContentLoaded', function() {
		// Get the button element
		var addButton = document.querySelector(".request-a-quote-table-content table th:last-of-type a");
		// Add a click event listener to the button
		addButton.addEventListener("click", function (event) {
			// Prevent the default form submission
			event.preventDefault();
			const img = document.getElementById('img-preview');
			// ðŸ‘‡ï¸ set image src attribute to an empty string
			img.setAttribute('src', '');
			// ðŸ‘‡ï¸ or hide image
			img.style.display = 'none';
			// Get the form field values
			var fileInput = document.getElementById("myFile");
			var filename = fileInput.value;
			var catNo = document.getElementById("cat-no").value;
			var chemicalName = document.getElementById("chemical-name").value;
			var cas = document.getElementById("cas").value;
			var packSize = document.getElementById("pack-size").value;
			var useSize = document.getElementById("use-size").value;
			var noOfPack = document.getElementById("no-of-pack").value;
			// Check that all required fields have values
			if (!chemicalName) {
				alert("Please Enter the Chemical Name");
				return;
			}
			// Check that all required fields have values
			// if (!filename || !catNo || !chemicalName || !cas || !packSize || !useSize || !noOfPack) {
			// 	alert("Please Enter the following detail Cat Number Chemical Name, CAS, Pack size or Use Size No of pack");
			// 	return;
			// }
			// Get the table element
			var table = document.querySelector(".request-a-quote-table table");
			// Create a new row and cells
			var newRow = table.insertRow(-1);
			var structureCell = newRow.insertCell(0);
			var catCell = newRow.insertCell(1);
			var chemicalNameCell = newRow.insertCell(2);
			var casCell = newRow.insertCell(3);
			var packSizeCell = newRow.insertCell(4);
			var useSizeCell = newRow.insertCell(5);
			var noOfPackCell = newRow.insertCell(6);
			var deleteCell = newRow.insertCell(7);
			// var element0 = document.createElement('input');
			// element0.type="file";
			// element0.name="myFile";
			// element0.id="myFile";
			// element0.className="form-control myFile";
			// element0.value=filename;
			// console.log('filename '+filename);
			////Now let's create a FileList
			// const dataTransfer = new DataTransfer();
			// dataTransfer.items.add(fileInput.files[0]);
			////myFile.files = dataTransfer.files;
			// document.getElementById('myFile').files = dataTransfer.files;
			// structureCell.appendChild(element0);
			var element1 = document.createElement('input');
			element1.type = "text";
			element1.name = "cat-no";
			element1.className = "form-control cat-no";
			element1.value = catNo;
			catCell.appendChild(element1);
			var element2 = document.createElement('input');
			element2.type = "text";
			element2.name = "chemical-name";
			element2.className = "form-control chemical-name";
			element2.value = chemicalName;
			chemicalNameCell.appendChild(element2);
			var element3 = document.createElement('input');
			element3.type = "text";
			element3.name = "cas";
			element3.className = "form-control cas";
			element3.value = cas;
			casCell.appendChild(element3);
			var element4 = document.createElement('input');
			element4.type = "text";
			element4.name = "pack-size";
			element4.className = "form-control pack-size";
			element4.value = packSize;
			packSizeCell.appendChild(element4);
			var element5 = document.createElement('input');
			element5.type = "text";
			element5.name = "use-size";
			element5.className = "form-control use-size";
			element5.value = useSize;
			useSizeCell.appendChild(element5);
			var element6 = document.createElement('input');
			element6.type = "text";
			element6.name = "no-of-pack";
			element6.className = "form-control no-of-pack";
			element6.value = noOfPack;
			noOfPackCell.appendChild(element6);
			// Create an image element to display the uploaded image
			var image = document.createElement("img");
			image.width = 100;
			image.height = 100;
			image.className = "myFile1";
			// Set the source of the image to the uploaded file
			var reader = new FileReader();
			// var imageValue = '';
			reader.onload = function (event) {
				image.src = event.target.result;
				// imageValue = event.target.result;
				// var element0 = document.createElement('input');
				// element0.type="hidden";
				// element0.name="myFile1";
				// element0.id="myFile1";
				// element0.className="form-control myFile1";
				// element0.value=event.target.result;
				// structureCell.appendChild(element0);
			}
			reader.readAsDataURL(fileInput.files[0]);
			// Add the form field values to the cells
			structureCell.appendChild(image);
			structureCell.className = "myFile";
			// var element0 = document.createElement('input');
			// element0.type="hidden";
			// element0.name="myFile";
			// element0.id="myFile";
			// element0.className="form-control myFile";
			// element0.value=fileInput.files[0];
			// structureCell.appendChild(element0);
			// catCell.value = catNo;
			// catCell.className = "cat-no";
			// chemicalNameCell.inputElement = chemicalName;
			// chemicalNameCell.className = "chemical-name";
			// casCell.innerHTML = cas;
			// casCell.className = "cas";
			// packSizeCell.innerHTML = packSize;
			// packSizeCell.className = "pack-size";
			// useSizeCell.innerHTML = useSize;
			// useSizeCell.className = "use-size";
			// noOfPackCell.innerHTML = noOfPack;
			// noOfPackCell.className = "no-of-pack";
			deleteCell.innerHTML = '&lt;a type="button" class="delete-row"&gt;&lt;i class="fa-solid fa-square-minus"&gt;&lt;/i&gt;&lt;/a&gt;';
			// Clear the form fields
			fileInput.value = "";
			//document.getElementById("img-preview").attr('src') = "";
			document.getElementById("cat-no").value = "";
			document.getElementById("chemical-name").value = "";
			document.getElementById("cas").value = "";
			document.getElementById("pack-size").value = "";
			document.getElementById("use-size").value = "";
			document.getElementById("no-of-pack").value = "";
			// Add a click event listener to the delete button
			var deleteButton = deleteCell.querySelector("a");
			deleteButton.addEventListener("click", function (event) {
				// Get the row to delete
				var rowToDelete = deleteButton.parentNode.parentNode;
				// Delete the row
				rowToDelete.parentNode.removeChild(rowToDelete);
			});
		});
		});
		//Mobile
		// Add row
		/* $('#addRowBtn_mobile').click(function () {
			var file = $('#myFile_mobile').val();
			var catNo = $('#cat-no_mobile').val();
			var chemicalName = $('#chemical-name_mobile').val();
			var cas = $('#cas_mobile').val();
			var packSize = $('#pack-size_mobile').val();
			var useSize = $('#use-size_mobile').val();
			var noOfPacks = $('#no-of-pack_mobile').val();
			// Create new row
			var newRow = '&lt;tr class="row"&gt;' +
				'&lt;td class="col-12"&gt;' + file + '&lt;/td&gt;' +
				'&lt;td class="col-12"&gt;' + catNo + '&lt;/td&gt;' +
				'&lt;td class="col-12"&gt;' + chemicalName + '&lt;/td&gt;' +
				'&lt;td class="col-12"&gt;' + cas + '&lt;/td&gt;' +
				'&lt;td class="col-12"&gt;' + packSize + '&lt;/td&gt;' +
				'&lt;td class="col-12"&gt;' + useSize + '&lt;/td&gt;' +
				'&lt;td class="col-12"&gt;' + noOfPacks + '&lt;/td&gt;' +
				'&lt;td class="col-12"&gt;&lt;a type="button" class="btn btn-danger deleteRowBtn_mobile"&gt;&lt;i class="fa-solid fa-minus"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/td&gt;' +
				'&lt;/tr&gt;';
			// Append new row to table body
			$('.request-a-quote-table-content-mobile table').append(newRow);
			// Clear form inputs
			$('#myFile_mobile').val('');
			$('#cat-no_mobile').val('');
			$('#chemical-name_mobile').val('');
			$('#cas_mobile').val('');
			$('#pack-size_mobile').val('');
			$('#use-size_mobile').val('');
			$('#no-of-pack_mobile').val('');
			// Update span tag with form data
			var formValues = '&lt;p&gt;&lt;strong&gt;Structure (Image Filename): &lt;/strong&gt;' + file + '&lt;/p&gt;' +
				'&lt;p&gt;&lt;strong&gt;Cat: &lt;/strong&gt;' + catNo + '&lt;/p&gt;' +
				'&lt;p&gt;&lt;strong&gt;Chemical Name: &lt;/strong&gt;' + chemicalName + '&lt;/p&gt;' +
				'&lt;p&gt;&lt;strong&gt;CAS: &lt;/strong&gt;' + cas + '&lt;/p&gt;' +
				'&lt;p&gt;&lt;strong&gt;Pack Size: &lt;/strong&gt;' + packSize + '&lt;/p&gt;' +
				'&lt;p&gt;&lt;strong&gt;Use Size: &lt;/strong&gt;' + useSize + '&lt;/p&gt;' +
				'&lt;p&gt;&lt;strong&gt;Number of Packs: &lt;/strong&gt;' + noOfPacks + '&lt;/p&gt;';
			$('.request-a-quote-table-mobile table thead tr').append('&lt;th scope="col" class="col-12"&gt;' + formValues + '&lt;/th&gt;');
		});
		// Delete row
		$(document).on('click', '.deleteRowBtn_mobile', function () {
			$(this).closest('tr').remove();
			var index = $(this).closest('td').index();
			$('.request-a-quote-table-mobile table thead tr th:nth-child(' + (index + 1) + ')').remove();
		}); */
	});
})(jQuery);
</pre></body></html>