| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/travnet.co.in/public/js/ |
Upload File : |
/*-----------------------------------------------------------------------------------
/* Styles Switcher
-----------------------------------------------------------------------------------*/
window.console = window.console || (function(){
var c = {}; c.log = c.warn = c.debug = c.info = c.error = c.time = c.dir = c.profile = c.clear = c.exception = c.trace = c.assert = function(){};
return c;
})();
jQuery(document).ready(function($) {
// Color Changer
$("#style-switcher .default" ).click(function(){
$("#colors" ).attr("href", "#" );
return false;
});
$("#style-switcher .aqua" ).click(function(){
$("#colors" ).attr("href", "css/color-aqua.css" );
return false;
});
$("#style-switcher .green_switcher" ).click(function(){
$("#colors" ).attr("href", "css/color-green.css" );
return false;
});
$("#style-switcher .orange" ).click(function(){
$("#colors" ).attr("href", "css/color-orange.css" );
return false;
});
$("#style-switcher .blue" ).click(function(){
$("#colors" ).attr("href", "css/color-blue.css" );
return false;
});
$("#style-switcher h6 a").click(function(e){
e.preventDefault();
var div = $("#style-switcher");
console.log(div.css("left"));
if (div.css("left") === "-205px") {
$("#style-switcher").animate({
left: "0px"
});
} else {
$("#style-switcher").animate({
left: "-205px"
});
}
});
$(".colors li a").click(function(e){
e.preventDefault();
$(this).parent().parent().find("a").removeClass("active");
$(this).addClass("active");
});
});