jQuery(document).ready(function($) {
// Thickness swatch par click event
$(document).on('click', '.variable-item[data-attribute="pa_thickness"], .mattress-swatch-btn', function() {
// Swatch ka value number nikal lo
var val = $(this).text().replace(/[^d]/g,'');
var tip = '';
if (val == '8') tip = 'Best if the sleepers weighs between 65 kg - 80 kg';
else if (val == '10') tip = 'Best if the sleepers weighs more than 80 kg';
else tip = '';
$('#thickness-tip').html(tip);
});
});