| Linux in-mum-web1499.main-hosting.eu 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64 Path : /home/u901718425/domains/rohanekambalewadi.homes/public_html/ |
| Current File : /home/u901718425/domains/rohanekambalewadi.homes/public_html/script.js |
$(document).ready(function () {
$(function(){
$(window).scroll(function(){
if($(this).scrollTop() >= 80){
$('.onscroll-fiex').addClass('fixed-nav');
}else{
$('.onscroll-fiex').removeClass('fixed-nav');
}
});
});
$('.hover-img').click(function(){
$('.gallery').removeClass('gallery');
$(this).addClass('gallery');
});
$('.gallery').click(function(){
$('.gallery').removeClass('gallery');
});
$(document).on("click", function(event) {
// Check if the click is outside the div
if (!$(event.target).closest(".gallery").length) {
// Close the div
$('.gallery').removeClass('gallery');
}
});
});