This unique pichwai elephant painting is a one-of-a-kind piece of art that is sure to add a touch of personality to your home. The elephant is painted in a whimsical style, and the colors are bright and cheerful. This painting is sure to bring a smile to your face every time you see it.
jQuery(document).ready(function($){
// Intercept clicks on category banners
$('.elementor-section .promo-banner a').on('click', function(e){
e.preventDefault();
// Get the URL of the clicked category (set in Link field)
let targetURL = $(this).attr('href');
// Show loading message
$('#ajax-product-area').html('
Loading products...
');
// Load only the product grid (.products) from that URL
$('#ajax-product-area').load(targetURL + ' .products', function(){
// Smooth scroll to the product area
$('html, body').animate({
scrollTop: $("#ajax-product-area").offset().top - 100
}, 600);
});
});
});