How to use removeClass method in Playwright Internal

Best JavaScript code snippet using playwright-internal

script-mobile.js

Source:script-mobile.js Github

copy

Full Screen

...26 var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;27 var flag = 0;28 var fcs = '';29 //var is_terms_cheked = $('#terms_checkbox').attr('checked'); 30 $("#firstName").addClass('valid').removeClass('error');31 $("#lastName").addClass('valid').removeClass('error');32 $("#address").addClass('valid').removeClass('error');33 $("#City").addClass('valid').removeClass('error');34 $("#country").addClass('valid').removeClass('error');35 $("#states").addClass('valid').removeClass('error');36 $("#postalCode").addClass('valid').removeClass('error');37 $("#phone").addClass('valid').removeClass('error');38 $("#email").addClass('valid').removeClass('error');39 40 41 if ($("#firstName").val().replace(/\s/g,"") =='' || $('#firstName').val()=='') {42 $("#firstName").addClass('error').removeClass('valid');43/* $("#firstName_e").addClass('error').removeClass('valid');*/44 //var label = $("#firstName").closest(":has('label')").find('label');45 alertText.push("First Name");46 flag = 1;47 if(fcs =='')48 fcs = 'firstName';49 }50 else if(!filter.test($('#firstName').val())){51 $("#firstName").addClass('error').removeClass('valid');52/* $("#firstName_e").addClass('error').removeClass('valid');*/53 var label = $("#firstName").closest(":has('label')").find('label');54 alertText.push("First Name");55 flag = 1;56 if(fcs =='')57 fcs = 'firstName';58 }59 if ($("#lastName").val().replace(/\s/g,"") =='' || $('#lastName').val()=='') {60 $("#lastName").addClass('error').removeClass('valid');61/* $("#lastName_e").addClass('error').removeClass('valid');*/62 var label = $("#lastName").closest(":has('label')").find('label');63 alertText.push("Last Name");64 flag = 1;65 if(fcs =='')66 fcs = 'lastName';67 }68 else if(!filter.test($('#lastName').val())){69 $("#lastName").addClass('error').removeClass('valid');70/* $("#lastName_e").addClass('error').removeClass('valid');*/71 var label = $("#lastName").closest(":has('label')").find('label');72 alertText.push("Last Name");73 flag = 1;74 if(fcs =='')75 fcs = 'lastName';76 }77 if ($("#address").val().replace(/\s/g,"") =='' || $('#address').val()=='') {78 $("#address").addClass('error').removeClass('valid');79/* $("#address_e").addClass('error').removeClass('valid');*/80 //var label = $("#address").closest(":has('label')").find('label');81 alertText.push("Address");82 flag = 1;83 if(fcs =='')84 fcs = 'address';85 }86 if ($("#City").val().replace(/\s/g,"") =='' || $('#City').val()=='') {87 $("#City").addClass('error').removeClass('valid');88/* $("#City_e").addClass('error').removeClass('valid');*/89 //var label = $("#City").closest(":has('label')").find('label');90 alertText.push("City");91 flag = 1;92 if(fcs =='')93 fcs = 'City';94 }95 if ($("#country").val().replace(/\s/g,"") =='' || $('#country').val()=='') {96 $("#country").addClass('error').removeClass('valid');97/* $("#states_e").addClass('error').removeClass('valid');*/98 //var label = $("#country").closest(":has('label')").find('label');99 alertText.push("Country");100 flag = 1;101 if(fcs =='')102 fcs = 'country';103 }104 if ($("#states").val().replace(/\s/g,"") =='' || $('#states').val()=='') {105 $("#states").addClass('error').removeClass('valid');106/* $("#states_e").addClass('error').removeClass('valid');*/107 //var label = $("#states").closest(":has('label')").find('label');108 alertText.push("State");109 flag = 1;110 if(fcs =='')111 fcs = 'states';112 }113 if ($("#postalCode").val().replace(/\s/g,"") =='' || $('#postalCode').val()=='') {114 $("#postalCode").addClass('error').removeClass('valid');115/* $("#postalCode_e").addClass('error').removeClass('valid');*/116 //var label = $("#postalCode").closest(":has('label')").find('label');117 alertText.push("Zip");118 flag = 1;119 if(fcs =='')120 fcs = 'postalCode';121 }122 if ($("#phone").val().replace(/\s/g,"") =='' || $('#phone').val()=='') {123 $("#phone").addClass('error').removeClass('valid');124/* $("#phone_e").addClass('error').removeClass('valid');*/125 //var label = $("#phone").closest(":has('label')").find('label');126 alertText.push("Phone");127 flag = 1;128 if(fcs =='')129 fcs = 'phone';130 } 131 else if(!phonefilter.test($('#phone').val()) ) {132 $("#phone").addClass('error').removeClass('valid');133/* $("#phone_e").addClass('error').removeClass('valid');*/134 //var label = $("#phone").closest(":has('label')").find('label');135 alertText.push("Phone");136 flag = 1;137 if(fcs =='')138 fcs = 'phone';139 }140 if ($("#email").val().replace(/\s/g,"") =='' || $('#email').val()=='') {141 $("#email").addClass('error').removeClass('valid');142/* $("#email_e").addClass('error').removeClass('valid');*/143 //var label = $("#email").closest(":has('label')").find('label');144 alertText.push("Email");145 flag = 1;146 if(fcs =='')147 fcs = 'email';148 } else if ( !emailReg.test($('#email').val()) ) {149 $("#email").addClass('error').removeClass('valid');150/* $("#email_e").addClass('error').removeClass('valid');*/151 //var label = $("#email").closest(":has('label')").find('label');152 alertText.push("Email");153 flag = 1;154 if(fcs =='')155 fcs = 'email';156 }157 //alert(flag);158 if (flag == 0) {159 //alert("Step2");160 //$("#subBtn").hide();161 //$("#rashover").show();162 skip=1;163 grayOut();164 window.internalLink = true;165 //$('#pop_overlay').fadeIn(300);166 return true;167 } else {168 skip=1;169 var text = '';170 for(i=0; i<alertText.length; i++){171 text += '<li>'+alertText[i]+'</li>';172 }173 text = '<ul>'+text+'</ul>';174 Alert(text);175 $('#'+fcs).focus();176 return false;177 }178}179function validate_form2(){180 var alertText = new Array();181 var errors = new Array();182 var filter = /[a-z A-Z]{1,64}$/;183 var phonefilter = /^([0-9\-\+\(\) ]{8,22})+$/ ;184 var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;185 var flag = 0;186 var fcs = '';187 //alert("Step1");188 //var is_terms_cheked = $('#terms_checkbox').attr('checked'); 189 $("#firstName").addClass('valid').removeClass('error');190 $("#lastName").addClass('valid').removeClass('error');191 $("#email").addClass('valid').removeClass('error');192 //$("#weight").addClass('valid').removeClass('error');193 if ($("#firstName").val().replace(/\s/g,"") =='' || $('#firstName').val()=='') {194 $("#firstName").addClass('error').removeClass('valid');195 flag = 1;196 var label = $("#firstName").closest(":has('label')").find('label');197 alertText.push(label.text().replace(':', ''));198 if(fcs =='')199 fcs = 'firstName';200 }201 else if(!filter.test($('#firstName').val())){202 $("#firstName").addClass('error').removeClass('valid');203 var label = $("#firstName").closest(":has('label')").find('label');204 alertText.push(label.text().replace(':', ''));205 flag = 1;206 if(fcs =='')207 fcs = 'firstName';208 }209 if ($("#lastName").val().replace(/\s/g,"") =='' || $('#lastName').val()=='') {210 $("#lastName").addClass('error').removeClass('valid');211 var label = $("#lastName").closest(":has('label')").find('label');212 alertText.push(label.text().replace(':', ''));213 flag = 1;214 if(fcs =='')215 fcs = 'lastName';216 }217 else if(!filter.test($('#lastName').val())){218 $("#lastName").addClass('error').removeClass('valid');219 var label = $("#lastName").closest(":has('label')").find('label');220 alertText.push(label.text().replace(':', ''));221 flag = 1;222 if(fcs =='')223 fcs = 'lastName';224 }225 if ($("#email").val().replace(/\s/g,"") =='' || $('#email').val()=='') {226 $("#email").addClass('error').removeClass('valid');227 var label = $("#email").closest(":has('label')").find('label');228 alertText.push(label.text().replace(':', ''));229 flag = 1;230 if(fcs =='')231 fcs = 'email';232 } else if ( !emailReg.test($('#email').val()) ) {233 $("#email").addClass('error').removeClass('valid');234 var label = $("#email").closest(":has('label')").find('label');235 alertText.push(label.text().replace(':', ''));236 flag = 1;237 if(fcs =='')238 fcs = 'email';239 }240 //alert(flag);241 if (flag == 0) {242 //alert("Step2");243 //$("#subBtn").hide();244 //$("#rashover").show();245 skip=1;246 grayOut();247 window.internalLink = true;248 //$('#pop_overlay').fadeIn(300);249 return true;250 } else {251 skip=1;252 var text = '';253 for(i=0; i<alertText.length; i++){254 text += '<li>'+alertText[i]+'</li>';255 }256 text = '<ul>'+text+'</ul>';257 Alert(text);258 $('#'+fcs).focus();259 return false;260 }261}262function validate_checkout_form(){263 skip = 1;264 var alertText = new Array();265 var errors = new Array();266 var filter = /[a-z A-Z]$/;267 var phonefilter = /[0-9]$/;268 var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;269 var flag = 0;270 var fcs = '';271 272 $("#cardNumber").addClass('valid').removeClass('error');273 //$("#cc_type").addClass('valid').removeClass('error');274 $("#expirationMonth").addClass('valid').removeClass('error');275 $("#expirationYear").addClass('valid').removeClass('error');276 $("#securityCode").addClass('valid').removeClass('error');277 278 279 $("#billing_street_address").addClass('valid').removeClass('error');280 $("#billing_city").addClass('valid').removeClass('error');281 $("#billing_state").addClass('valid').removeClass('error');282 $("#billing_postcode").addClass('valid').removeClass('error');283 284 if($('#billingSameAsShipping').val() == 'NO'){285 286 287 if ($("#billing_street_address").val().replace(/\s/g,"") =='' || $('#billing_street_address').val()=='') {288 $("#billing_street_address").addClass('error').removeClass('valid');289 /* $("#address_e").addClass('error').removeClass('valid');*/290 var label = $("#billing_street_address").prev('label');291 alertText.push('Billing Address');292 flag = 1;293 if(fcs =='')294 fcs = 'billing_street_address';295 }296 if ($("#billing_city").val().replace(/\s/g,"") =='' || $('#billing_city').val()=='') {297 $("#billing_city").addClass('error').removeClass('valid');298 /* $("#City_e").addClass('error').removeClass('valid');*/299 var label = $("#billing_city").prev('label');300 alertText.push('Billing City');301 flag = 1;302 if(fcs =='')303 fcs = 'billing_city';304 }305 if ($("#billing_state").val().replace(/\s/g,"") =='' || $('#billing_state').val()=='') {306 $("#billing_state").addClass('error').removeClass('valid');307 /* $("#states_e").addClass('error').removeClass('valid');*/308 var label = $("#billing_state").prev('label');309 alertText.push('Billing State');310 flag = 1;311 if(fcs =='')312 fcs = 'billing_state';313 }314 if ($("#billing_postcode").val().replace(/\s/g,"") =='' || $('#billing_postcode').val()=='') {315 $("#billing_postcode").addClass('error').removeClass('valid');316 /* $("#postalCode_e").addClass('error').removeClass('valid');*/317 var label = $("#billing_postcode").prev('label');318 alertText.push('Billing Zip');319 flag = 1;320 if(fcs =='')321 fcs = 'billing_postcode';322 }323 }324 325 326 327 if( $("#cardNumber").val().replace(/\s/g,"") =='' || $("#cardNumber").val() == '' || !phonefilter.test($("#cardNumber").val())) {328 $("#cardNumber").addClass('error').removeClass('valid');329 var label = $("#cardNumber").prev('label');330 alertText.push('Card #');331 flag = 1;332 if(fcs =='')333 fcs = 'cardNumber';334 }335 336 if( $("#expirationMonth").val().replace(/\s/g,"") =='' || $("#expirationMonth").val() == '' ) {337 $("#expirationMonth").addClass('error').removeClass('valid');338 alertText.push('Expiration Month');339 flag = 1;340 if(fcs =='')341 fcs = 'expirationMonth';342 }343 if( $("#expirationYear").val().replace(/\s/g,"") =='' || $("#expirationYear").val() == '' ) {344 $("#expirationYear").addClass('error').removeClass('valid');345 alertText.push('Expiration Year');346 flag = 1;347 if(fcs =='')348 fcs = 'expirationYear';349 } 350 else if( ValidateExpDate()==false ) {351 $("#expirationYear").addClass('error').removeClass('valid');352 $("#expirationMonth").addClass('error').removeClass('valid');353 alertText.push('Expiration Date');354 flag = 1;355 if(fcs =='')356 fcs = 'expirationMonth';357 }358 if( $("#securityCode").val().replace(/\s/g,"") =='' || $("#securityCode").val() == '' || !phonefilter.test($("#securityCode").val())) {359 $("#securityCode").addClass('error').removeClass('valid');360 var label = $("#securityCode").prev('label');361 alertText.push('CVV');362 flag = 1;363 if(fcs =='')364 fcs = 'securityCode';365 }366 367 368 if (flag == 0 ) {369 370 skip = 1;371 grayOut();372 window.internalLink = true;373 $('#pop_overlay').fadeIn(300);374 return true;375 376 } else {377 skip = 1;378 var text = '';379 for(i=0; i<alertText.length; i++){380 text += '<li>'+alertText[i]+'</li>';381 }382 text = '<ul>'+text+'</ul>';383 Alert(text);384 $('#'+fcs).focus();385 return false;386 }387}388function validate_checkout_form2(){389 skip = 1;390 var alertText = new Array();391 var errors = new Array();392 var filter = /[a-z A-Z]$/;393 var phonefilter = /[0-9]$/;394 var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;395 var flag = 0;396 var fcs = '';397 $("#firstName").addClass('valid').removeClass('error');398 $("#lastName").addClass('valid').removeClass('error');399 $("#address").addClass('valid').removeClass('error');400 $("#City").addClass('valid').removeClass('error');401 $("#country").addClass('valid').removeClass('error');402 $("#states").addClass('valid').removeClass('error');403 $("#postalCode").addClass('valid').removeClass('error');404 $("#phone").addClass('valid').removeClass('error');405 $("#email").addClass('valid').removeClass('error');406 407 $("#cardNumber").addClass('valid').removeClass('error');408 //$("#cc_type").addClass('valid').removeClass('error');409 $("#expirationMonth").addClass('valid').removeClass('error');410 $("#expirationYear").addClass('valid').removeClass('error');411 $("#securityCode").addClass('valid').removeClass('error');412 413 414 $("#billing_street_address").addClass('valid').removeClass('error');415 $("#billing_city").addClass('valid').removeClass('error');416 $("#billing_state").addClass('valid').removeClass('error');417 $("#billing_postcode").addClass('valid').removeClass('error');418 419 if ($("#firstName").val().replace(/\s/g,"") =='' || $('#firstName').val()=='') {420 $("#firstName").addClass('error').removeClass('valid');421/* $("#firstName_e").addClass('error').removeClass('valid');*/422 //var label = $("#firstName").closest(":has('label')").find('label');423 alertText.push("First Name");424 flag = 1;425 if(fcs =='')426 fcs = 'firstName';427 }428 else if(!filter.test($('#firstName').val())){429 $("#firstName").addClass('error').removeClass('valid');430/* $("#firstName_e").addClass('error').removeClass('valid');*/431 var label = $("#firstName").closest(":has('label')").find('label');432 alertText.push("First Name");433 flag = 1;434 if(fcs =='')435 fcs = 'firstName';436 }437 if ($("#lastName").val().replace(/\s/g,"") =='' || $('#lastName').val()=='') {438 $("#lastName").addClass('error').removeClass('valid');439/* $("#lastName_e").addClass('error').removeClass('valid');*/440 var label = $("#lastName").closest(":has('label')").find('label');441 alertText.push("Last Name");442 flag = 1;443 if(fcs =='')444 fcs = 'lastName';445 }446 else if(!filter.test($('#lastName').val())){447 $("#lastName").addClass('error').removeClass('valid');448/* $("#lastName_e").addClass('error').removeClass('valid');*/449 var label = $("#lastName").closest(":has('label')").find('label');450 alertText.push("Last Name");451 flag = 1;452 if(fcs =='')453 fcs = 'lastName';454 }455 if ($("#address").val().replace(/\s/g,"") =='' || $('#address').val()=='') {456 $("#address").addClass('error').removeClass('valid');457/* $("#address_e").addClass('error').removeClass('valid');*/458 //var label = $("#address").closest(":has('label')").find('label');459 alertText.push("Address");460 flag = 1;461 if(fcs =='')462 fcs = 'address';463 }464 if ($("#City").val().replace(/\s/g,"") =='' || $('#City').val()=='') {465 $("#City").addClass('error').removeClass('valid');466/* $("#City_e").addClass('error').removeClass('valid');*/467 //var label = $("#City").closest(":has('label')").find('label');468 alertText.push("City");469 flag = 1;470 if(fcs =='')471 fcs = 'City';472 }473 if ($("#country").val().replace(/\s/g,"") =='' || $('#country').val()=='') {474 $("#country").addClass('error').removeClass('valid');475/* $("#states_e").addClass('error').removeClass('valid');*/476 //var label = $("#country").closest(":has('label')").find('label');477 alertText.push("Country");478 flag = 1;479 if(fcs =='')480 fcs = 'country';481 }482 if ($("#states").val().replace(/\s/g,"") =='' || $('#states').val()=='') {483 $("#states").addClass('error').removeClass('valid');484/* $("#states_e").addClass('error').removeClass('valid');*/485 //var label = $("#states").closest(":has('label')").find('label');486 alertText.push("State");487 flag = 1;488 if(fcs =='')489 fcs = 'states';490 }491 if ($("#postalCode").val().replace(/\s/g,"") =='' || $('#postalCode').val()=='') {492 $("#postalCode").addClass('error').removeClass('valid');493/* $("#postalCode_e").addClass('error').removeClass('valid');*/494 //var label = $("#postalCode").closest(":has('label')").find('label');495 alertText.push("Zip");496 flag = 1;497 if(fcs =='')498 fcs = 'postalCode';499 }500 if ($("#phone").val().replace(/\s/g,"") =='' || $('#phone').val()=='') {501 $("#phone").addClass('error').removeClass('valid');502/* $("#phone_e").addClass('error').removeClass('valid');*/503 //var label = $("#phone").closest(":has('label')").find('label');504 alertText.push("Phone");505 flag = 1;506 if(fcs =='')507 fcs = 'phone';508 } 509 else if(!phonefilter.test($('#phone').val()) ) {510 $("#phone").addClass('error').removeClass('valid');511/* $("#phone_e").addClass('error').removeClass('valid');*/512 //var label = $("#phone").closest(":has('label')").find('label');513 alertText.push("Phone");514 flag = 1;515 if(fcs =='')516 fcs = 'phone';517 }518 if ($("#email").val().replace(/\s/g,"") =='' || $('#email').val()=='') {519 $("#email").addClass('error').removeClass('valid');520/* $("#email_e").addClass('error').removeClass('valid');*/521 //var label = $("#email").closest(":has('label')").find('label');522 alertText.push("Email");523 flag = 1;524 if(fcs =='')525 fcs = 'email';526 } else if ( !emailReg.test($('#email').val()) ) {527 $("#email").addClass('error').removeClass('valid');528/* $("#email_e").addClass('error').removeClass('valid');*/529 //var label = $("#email").closest(":has('label')").find('label');530 alertText.push("Email");531 flag = 1;532 if(fcs =='')533 fcs = 'email';534 }535 536 if($('#billingSameAsShipping').val() == 'NO'){537 538 539 if ($("#billing_street_address").val().replace(/\s/g,"") =='' || $('#billing_street_address').val()=='') {540 $("#billing_street_address").addClass('error').removeClass('valid');541 /* $("#address_e").addClass('error').removeClass('valid');*/542 var label = $("#billing_street_address").prev('label');543 alertText.push('Billing Address');544 flag = 1;545 if(fcs =='')546 fcs = 'billing_street_address';547 }548 if ($("#billing_city").val().replace(/\s/g,"") =='' || $('#billing_city').val()=='') {549 $("#billing_city").addClass('error').removeClass('valid');550 /* $("#City_e").addClass('error').removeClass('valid');*/551 var label = $("#billing_city").prev('label');552 alertText.push('Billing City');553 flag = 1;554 if(fcs =='')555 fcs = 'billing_city';556 }557 if ($("#billing_state").val().replace(/\s/g,"") =='' || $('#billing_state').val()=='') {558 $("#billing_state").addClass('error').removeClass('valid');559 /* $("#states_e").addClass('error').removeClass('valid');*/560 var label = $("#billing_state").prev('label');561 alertText.push('Billing State');562 flag = 1;563 if(fcs =='')564 fcs = 'billing_state';565 }566 if ($("#billing_postcode").val().replace(/\s/g,"") =='' || $('#billing_postcode').val()=='') {567 $("#billing_postcode").addClass('error').removeClass('valid');568 /* $("#postalCode_e").addClass('error').removeClass('valid');*/569 var label = $("#billing_postcode").prev('label');570 alertText.push('Billing Zip');571 flag = 1;572 if(fcs =='')573 fcs = 'billing_postcode';574 }575 }576 577 578 579 if( $("#cardNumber").val().replace(/\s/g,"") =='' || $("#cardNumber").val() == '' || !phonefilter.test($("#cardNumber").val())) {580 $("#cardNumber").addClass('error').removeClass('valid');581 var label = $("#cardNumber").prev('label');582 alertText.push('Card #');583 flag = 1;584 if(fcs =='')585 fcs = 'cardNumber';586 }587 588 if( $("#expirationMonth").val().replace(/\s/g,"") =='' || $("#expirationMonth").val() == '' ) {589 $("#expirationMonth").addClass('error').removeClass('valid');590 alertText.push('Expiration Month');591 flag = 1;592 if(fcs =='')593 fcs = 'expirationMonth';594 }595 if( $("#expirationYear").val().replace(/\s/g,"") =='' || $("#expirationYear").val() == '' ) {596 $("#expirationYear").addClass('error').removeClass('valid');597 alertText.push('Expiration Year');598 flag = 1;599 if(fcs =='')600 fcs = 'expirationYear';601 } 602 else if( ValidateExpDate()==false ) {603 $("#expirationYear").addClass('error').removeClass('valid');604 $("#expirationMonth").addClass('error').removeClass('valid');605 alertText.push('Expiration Date');606 flag = 1;607 if(fcs =='')608 fcs = 'expirationMonth';609 }610 if( $("#securityCode").val().replace(/\s/g,"") =='' || $("#securityCode").val() == '' || !phonefilter.test($("#securityCode").val())) {611 $("#securityCode").addClass('error').removeClass('valid');612 var label = $("#securityCode").prev('label');613 alertText.push('CVV');614 flag = 1;615 if(fcs =='')616 fcs = 'securityCode';617 }618 619 620 if (flag == 0 ) {621 622 skip = 1;623 grayOut();624 window.internalLink = true;625 $('#pop_overlay').fadeIn(300);626 return true;627 628 } else {629 skip = 1;630 var text = '';631 for(i=0; i<alertText.length; i++){632 text += '<li>'+alertText[i]+'</li>';633 }634 text = '<ul>'+text+'</ul>';635 Alert(text);636 $('#'+fcs).focus();637 return false;638 }639}640function validate_formthanks(){641 skip=1;642 var alertText = new Array();643 var errors = new Array();644 var filter = /[a-z A-Z]{1,64}$/;645 var phonefilter = /^([0-9\-\+\(\) ]{8,22})+$/ ;646 var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;647 var flag = 0;648 var fcs = ''; 649 $("#order_process").addClass('valid').removeClass('error');650 $("#reason").addClass('valid').removeClass('error');651 $("#achieve").addClass('valid').removeClass('error');652 $("#find_us").addClass('valid').removeClass('error');653 654 655 if ($("#order_process").val().replace(/\s/g,"") =='' || $('#order_process').val()=='') {656 $("#order_process").addClass('error').removeClass('valid');657 alertText.push("What did you think of the order process");658 flag = 1;659 if(fcs =='')660 fcs = 'order_process';661 }662 else if(!filter.test($('#order_process').val())){663 $("#order_process").addClass('error').removeClass('valid');664 var label = $("#order_process").closest(":has('label')").find('label');665 alertText.push("What did you think of the order process");666 flag = 1;667 if(fcs =='')668 fcs = 'order_process';669 }670 671 672 673 674 675 676 677 678 if ($("#reason").val().replace(/\s/g,"") =='' || $('#reason').val()=='') {679 $("#reason").addClass('error').removeClass('valid');680 alertText.push("What is the most important reason you ordered");681 flag = 1;682 if(fcs =='')683 fcs = 'reason';684 }685 if ($("#achieve").val().replace(/\s/g,"") =='' || $('#achieve').val()=='') {686 $("#achieve").addClass('error').removeClass('valid');687 alertText.push("What do you wish to achieve with this product");688 flag = 1;689 if(fcs =='')690 fcs = 'achieve';691 }692 if ($("#find_us").val().replace(/\s/g,"") =='' || $('#find_us').val()=='') {693 $("#find_us").addClass('error').removeClass('valid');694 alertText.push("How did you find us");695 flag = 1;696 if(fcs =='')697 fcs = 'find_us';698 }699 //alert(flag);700 if (flag == 0 ) {701 702 skip = 1;703 grayOut();704 window.internalLink = true;705 $('#pop_overlay').fadeIn(300);706 return true;707 708 } else {709 skip = 1;710 var text = '';711 for(i=0; i<alertText.length; i++){712 text += '<li>'+alertText[i]+'</li>';713 }714 text = '<ul>'+text+'</ul>';715 Alert(text);716 $('#'+fcs).focus();717 return false;718 }719}720function validate_one_form(){721 skip=1;722 var alertText = new Array();723 var errors = new Array();724 var filter = /[a-z A-Z]$/;725 var phonefilter = /[0-9]$/;726 var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;727 var flag = 0;728 var fcs = '';729 730 $("#cardNumber").addClass('valid').removeClass('error');731 $("#cc_type").addClass('valid').removeClass('error');732 $("#expirationMonth").addClass('valid').removeClass('error');733 $("#expirationYear").addClass('valid').removeClass('error');734 $("#securityCode").addClass('valid').removeClass('error');735 736 $("#billing_fname").addClass('valid').removeClass('error');737 $("#billing_lname").addClass('valid').removeClass('error');738 $("#billing_street_address").addClass('valid').removeClass('error');739 $("#billing_city").addClass('valid').removeClass('error');740 $("#billing_state").addClass('valid').removeClass('error');741 $("#billing_postcode").addClass('valid').removeClass('error');742 743 $("#firstName").addClass('valid').removeClass('error');744 $("#lastName").addClass('valid').removeClass('error');745 $("#address").addClass('valid').removeClass('error');746 $("#City").addClass('valid').removeClass('error');747 $("#country").addClass('valid').removeClass('error');748 $("#states").addClass('valid').removeClass('error');749 $("#postalCode").addClass('valid').removeClass('error');750 $("#phone").addClass('valid').removeClass('error');751 $("#email").addClass('valid').removeClass('error');752 753 754if ($("#firstName").val().replace(/\s/g,"") =='' || $('#firstName').val()=='') {755 $("#firstName").addClass('error').removeClass('valid');756/* $("#firstName_e").addClass('error').removeClass('valid');*/757 //var label = $("#firstName").closest(":has('label')").find('label');758 alertText.push("First Name");759 flag = 1;760 if(fcs =='')761 fcs = 'firstName';762 }763 else if(!filter.test($('#firstName').val())){764 $("#firstName").addClass('error').removeClass('valid');765/* $("#firstName_e").addClass('error').removeClass('valid');*/766 var label = $("#firstName").closest(":has('label')").find('label');767 alertText.push("First Name");768 flag = 1;769 if(fcs =='')770 fcs = 'firstName';771 }772 if ($("#lastName").val().replace(/\s/g,"") =='' || $('#lastName').val()=='') {773 $("#lastName").addClass('error').removeClass('valid');774/* $("#lastName_e").addClass('error').removeClass('valid');*/775 var label = $("#lastName").closest(":has('label')").find('label');776 alertText.push("Last Name");777 flag = 1;778 if(fcs =='')779 fcs = 'lastName';780 }781 else if(!filter.test($('#lastName').val())){782 $("#lastName").addClass('error').removeClass('valid');783/* $("#lastName_e").addClass('error').removeClass('valid');*/784 var label = $("#lastName").closest(":has('label')").find('label');785 alertText.push("Last Name");786 flag = 1;787 if(fcs =='')788 fcs = 'lastName';789 }790 if ($("#address").val().replace(/\s/g,"") =='' || $('#address').val()=='') {791 $("#address").addClass('error').removeClass('valid');792/* $("#address_e").addClass('error').removeClass('valid');*/793 //var label = $("#address").closest(":has('label')").find('label');794 alertText.push("Address");795 flag = 1;796 if(fcs =='')797 fcs = 'address';798 }799 if ($("#City").val().replace(/\s/g,"") =='' || $('#City').val()=='') {800 $("#City").addClass('error').removeClass('valid');801/* $("#City_e").addClass('error').removeClass('valid');*/802 //var label = $("#City").closest(":has('label')").find('label');803 alertText.push("City");804 flag = 1;805 if(fcs =='')806 fcs = 'City';807 }808 if ($("#country").val().replace(/\s/g,"") =='' || $('#country').val()=='') {809 $("#country").addClass('error').removeClass('valid');810/* $("#states_e").addClass('error').removeClass('valid');*/811 //var label = $("#country").closest(":has('label')").find('label');812 alertText.push("Country");813 flag = 1;814 if(fcs =='')815 fcs = 'country';816 }817 if ($("#states").val().replace(/\s/g,"") =='' || $('#states').val()=='') {818 $("#states").addClass('error').removeClass('valid');819/* $("#states_e").addClass('error').removeClass('valid');*/820 //var label = $("#states").closest(":has('label')").find('label');821 alertText.push("State");822 flag = 1;823 if(fcs =='')824 fcs = 'states';825 }826 if ($("#postalCode").val().replace(/\s/g,"") =='' || $('#postalCode').val()=='') {827 $("#postalCode").addClass('error').removeClass('valid');828/* $("#postalCode_e").addClass('error').removeClass('valid');*/829 //var label = $("#postalCode").closest(":has('label')").find('label');830 alertText.push("Zip");831 flag = 1;832 if(fcs =='')833 fcs = 'postalCode';834 }835 if ($("#phone").val().replace(/\s/g,"") =='' || $('#phone').val()=='') {836 $("#phone").addClass('error').removeClass('valid');837/* $("#phone_e").addClass('error').removeClass('valid');*/838 //var label = $("#phone").closest(":has('label')").find('label');839 alertText.push("Phone");840 flag = 1;841 if(fcs =='')842 fcs = 'phone';843 } 844 else if(!phonefilter.test($('#phone').val()) ) {845 $("#phone").addClass('error').removeClass('valid');846/* $("#phone_e").addClass('error').removeClass('valid');*/847 //var label = $("#phone").closest(":has('label')").find('label');848 alertText.push("Phone");849 flag = 1;850 if(fcs =='')851 fcs = 'phone';852 }853 if ($("#email").val().replace(/\s/g,"") =='' || $('#email').val()=='') {854 $("#email").addClass('error').removeClass('valid');855/* $("#email_e").addClass('error').removeClass('valid');*/856 //var label = $("#email").closest(":has('label')").find('label');857 alertText.push("Email");858 flag = 1;859 if(fcs =='')860 fcs = 'email';861 } else if ( !emailReg.test($('#email').val()) ) {862 $("#email").addClass('error').removeClass('valid');863/* $("#email_e").addClass('error').removeClass('valid');*/864 //var label = $("#email").closest(":has('label')").find('label');865 alertText.push("Email");866 flag = 1;867 if(fcs =='')868 fcs = 'email';869 }870 if($('#billingSameAsShipping').val() == 'NO'){871 872 if ($("#billing_fname").val().replace(/\s/g,"") =='' || $('#billing_fname').val()=='') {873 $("#billing_fname").addClass('error').removeClass('valid');874 /* $("#address_e").addClass('error').removeClass('valid');*/875 var label = $("#billing_fname").prev('label');876 alertText.push('Billing First Name');877 flag = 1;878 if(fcs =='')879 fcs = 'billing_fname';880 }881 if ($("#billing_lname").val().replace(/\s/g,"") =='' || $('#billing_lname').val()=='') {882 $("#billing_lname").addClass('error').removeClass('valid');883 /* $("#address_e").addClass('error').removeClass('valid');*/884 var label = $("#billing_lname").prev('label');885 alertText.push('Billing Last Name');886 flag = 1;887 if(fcs =='')888 fcs = 'billing_lname';889 }890 if ($("#billing_street_address").val().replace(/\s/g,"") =='' || $('#billing_street_address').val()=='') {891 $("#billing_street_address").addClass('error').removeClass('valid');892 /* $("#address_e").addClass('error').removeClass('valid');*/893 var label = $("#billing_street_address").prev('label');894 alertText.push('Billing Address');895 flag = 1;896 if(fcs =='')897 fcs = 'billing_street_address';898 }899 if ($("#billing_city").val().replace(/\s/g,"") =='' || $('#billing_city').val()=='') {900 $("#billing_city").addClass('error').removeClass('valid');901 /* $("#City_e").addClass('error').removeClass('valid');*/902 var label = $("#billing_city").prev('label');903 alertText.push('Billing City');904 flag = 1;905 if(fcs =='')906 fcs = 'billing_city';907 }908 if ($("#billing_state").val().replace(/\s/g,"") =='' || $('#billing_state').val()=='') {909 $("#billing_state").addClass('error').removeClass('valid');910 /* $("#states_e").addClass('error').removeClass('valid');*/911 var label = $("#billing_state").prev('label');912 alertText.push('Billing State');913 flag = 1;914 if(fcs =='')915 fcs = 'billing_state';916 }917 if ($("#billing_postcode").val().replace(/\s/g,"") =='' || $('#billing_postcode').val()=='') {918 $("#billing_postcode").addClass('error').removeClass('valid');919 /* $("#postalCode_e").addClass('error').removeClass('valid');*/920 var label = $("#billing_postcode").prev('label');921 alertText.push('Billing Zip');922 flag = 1;923 if(fcs =='')924 fcs = 'billing_postcode';925 }926 }927 928 if( $("#cc_type").val().replace(/\s/g,"") =='' || $("#cc_type").val() == '') {929 $("#cc_type").addClass('error').removeClass('valid');930 var label = $("#cc_type").prev('label');931 alertText.push('Card Type');932 flag = 1;933 if(fcs =='')934 fcs = 'cc_type';935 }936 937 if( $("#cardNumber").val().replace(/\s/g,"") =='' || $("#cardNumber").val() == '' || !phonefilter.test($("#cardNumber").val())) {938 $("#cardNumber").addClass('error').removeClass('valid');939 var label = $("#cardNumber").prev('label');940 alertText.push('Card #');941 flag = 1;942 if(fcs =='')943 fcs = 'cardNumber';944 }945 946 if( $("#expirationMonth").val().replace(/\s/g,"") =='' || $("#expirationMonth").val() == '' ) {947 $("#expirationMonth").addClass('error').removeClass('valid');948 alertText.push('Expiration Month');949 flag = 1;950 if(fcs =='')951 fcs = 'expirationMonth';952 }953 if( $("#expirationYear").val().replace(/\s/g,"") =='' || $("#expirationYear").val() == '' ) {954 $("#expirationYear").addClass('error').removeClass('valid');955 alertText.push('Expiration Year');956 flag = 1;957 if(fcs =='')958 fcs = 'expirationYear';959 } 960 else if( ValidateExpDate()==false ) {961 $("#expirationYear").addClass('error').removeClass('valid');962 $("#expirationMonth").addClass('error').removeClass('valid');963 alertText.push('Expiration Date');964 flag = 1;965 if(fcs =='')966 fcs = 'expirationMonth';967 }968 if( $("#securityCode").val().replace(/\s/g,"") =='' || $("#securityCode").val() == '' || !phonefilter.test($("#securityCode").val())) {969 $("#securityCode").addClass('error').removeClass('valid');970 var label = $("#securityCode").prev('label');971 alertText.push('CVV');972 flag = 1;973 if(fcs =='')974 fcs = 'securityCode';975 }976 if(!document.getElementById('terms').checked) {977 $("#terms").addClass('error').removeClass('valid');978 //var label = $("#securityCode").prev('label');979 alertText.push('Terms');980 flag = 1;981 if(fcs =='')982 fcs = 'terms';983 }984 985 if (flag == 0 ) {986 /*document.getElementById('form-btn').disabled = true;987 $('#form-btn').addClass('checkout_btn_dis').removeClass('submitBtn');988 $('#message_response_area').hide();989 $('#loader_area').show();990 //$('#pop_overlay').fadeIn(300);991 var page_ajax = 'submit_order_limelight.php';992 //alert($('#form1').serialize());993 $.ajax({type:'POST', url: '../includes/'+page_ajax, data:$('#order_form').serialize(), success: function(response) {994 //alert(response);995 var res = response.split("|");996 //alert(res[0]+' | '+res[1]);997 if( res[0]=='decline' ) {998 PreventExitPop = 1;999 $('#loader_area').hide();1000 //$('#pop_overlay').fadeOut(300);1001 //alert(response);1002 document.getElementById('form-btn').disabled = false;1003 $('#discountholder').slideDown(800);1004 } else if( res[0]=='ok' ) {1005 PreventExitPop = 1;1006 window.location.href = '../up/index.php'+res[1];1007 //alert('=>'+response);1008 } else {1009 //$('#pop_overlay').fadeOut(300);1010 $('#message_response_area').show();1011 $('#message_response_area').html(res[0]);1012 $('#loader_area').hide();1013 document.getElementById('form-btn').disabled = false;1014 $('#form-btn').removeClass('checkout_btn_dis').addClass('submitBtn');1015 }1016 }});1017 1018 return false;*/1019 skip = 1;1020 grayOut();1021 window.internalLink = true;1022 $('#pop_overlay').fadeIn(300);1023 return true;1024 1025 } else {1026 skip = 1;1027 var text = '';1028 for(i=0; i<alertText.length; i++){1029 text += '<li>'+alertText[i]+'</li>';1030 }1031 text = '<ul>'+text+'</ul>';1032 Alert(text);1033 $('#'+fcs).focus();1034 return false;1035 }1036}1037function isNumber(evt) {1038 evt = (evt) ? evt : window.event;1039 var charCode = (evt.which) ? evt.which : evt.keyCode;1040 if (charCode > 31 && (charCode < 48 || charCode > 57)) {1041 return false;1042 }1043 return true;1044}1045$(document).ready(function() {1046 if (typeof String.prototype.startsWith != 'function') {1047 // see below for better implementation!1048 String.prototype.startsWith = function (str){1049 return this.indexOf(str) == 0;1050 };1051 }1052 $('#cc_number').keyup(function(){1053 if($('#cc_number').val().startsWith('4')){1054 $('.cards li').not('.visa').addClass('off');1055 $('#cc_type').val('visa');1056 }1057 else if($('#cc_number').val().startsWith('51')){1058 $('.cards li').not('.mastercard').addClass('off');1059 $('#cc_type').val('master');1060 }1061 else if($('#cc_number').val().startsWith('65')){1062 $('.cards li').not('.discover').addClass('off');1063 $('#cc_type').val('discover');1064 }1065 else{1066 $('.cards li').removeClass('off');1067 $('#cc_type').val('');1068 }1069 });1070});1071function togglebill(c){1072 if(c=='NO'){1073 $('div.billing').fadeIn(1);1074 $('#billingSameAsShipping').val('NO');1075 }1076 else{1077 $('div.billing').fadeOut(1);1078 $('#billingSameAsShipping').val('YES');1079 }1080}1081function validate_single(id){1082 var errors = new Array();1083 var phonefilter = /[0-9]$/;1084 var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;1085 var flag = 0;1086 switch(id){1087 case "firstName":1088 case "billing_fname":1089 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1090 $("#"+id).addClass('error').removeClass('valid');1091 $("#"+id+"_e").addClass('error').removeClass('valid');1092 }1093 else{1094 $("#"+id).addClass('valid').removeClass('error');1095 $("#"+id+"_e").addClass('valid').removeClass('error');1096 }1097 break;1098 case "lastName":1099 case "billing_lname":1100 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1101 $("#"+id).addClass('error').removeClass('valid');1102 $("#"+id+"_e").addClass('error').removeClass('valid');1103 }1104 else{1105 $("#"+id).addClass('valid').removeClass('error');1106 $("#"+id+"_e").addClass('valid').removeClass('error');1107 }1108 break;1109 case "address":1110 case "billing_street_address":1111 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1112 $("#"+id).addClass('error').removeClass('valid');1113 $("#"+id+"_e").addClass('error').removeClass('valid');1114 }1115 else{1116 $("#"+id).addClass('valid').removeClass('error');1117 $("#"+id+"_e").addClass('valid').removeClass('error');1118 }1119 break;1120 case "City":1121 case "billing_city":1122 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1123 $("#"+id).addClass('error').removeClass('valid');1124 $("#"+id+"_e").addClass('error').removeClass('valid');1125 }1126 else{1127 $("#"+id).addClass('valid').removeClass('error');1128 $("#"+id+"_e").addClass('valid').removeClass('error');1129 }1130 break;1131 case "states":1132 case "billing_state":1133 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1134 $("#"+id).addClass('error').removeClass('valid');1135 $("#"+id+"_e").addClass('error').removeClass('valid');1136 }1137 else{1138 $("#"+id).addClass('valid').removeClass('error');1139 $("#"+id+"_e").addClass('valid').removeClass('error');1140 }1141 break;1142 case "country":1143 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1144 $("#"+id).addClass('error').removeClass('valid');1145 $("#"+id+"_e").addClass('error').removeClass('valid');1146 }1147 else{1148 $("#"+id).addClass('valid').removeClass('error');1149 $("#"+id+"_e").addClass('valid').removeClass('error');1150 }1151 break;1152 case "phone":1153 case "phone1":1154 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '' || !phonefilter.test($("#"+id).val())) {1155 $("#"+id).addClass('error').removeClass('valid');1156 $("#"+id+"_e").addClass('error').removeClass('valid');1157 }1158 else{1159 $("#"+id).addClass('valid').removeClass('error');1160 $("#"+id+"_e").addClass('valid').removeClass('error');1161 }1162 case "phone":1163 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1164 $("#"+id).addClass('error').removeClass('valid');1165 }1166 else{1167 $("#"+id).addClass('valid').removeClass('error');1168 }1169 break;1170 case "email":1171 case "email1":1172 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '' || !emailReg.test($("#"+id).val())) {1173 $("#"+id).addClass('error').removeClass('valid');1174 $("#"+id+"_e").addClass('error').removeClass('valid');1175 }1176 else{1177 $("#"+id).addClass('valid').removeClass('error');1178 $("#"+id+"_e").addClass('valid').removeClass('error');1179 }1180 break;1181 case "postalCode":1182 case "billing_postcode":1183 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1184 $("#"+id).addClass('error').removeClass('valid');1185 $("#"+id+"_e").addClass('error').removeClass('valid');1186 }1187 else{1188 $("#"+id).addClass('valid').removeClass('error');1189 $("#"+id+"_e").addClass('valid').removeClass('error');1190 }1191 break;1192 1193 1194 1195 case "cc_type":1196 if( $("#cc_type").val().replace(/\s/g,"") =='' || $("#cc_type").val() == '') {1197 $("#cc_type").addClass('error').removeClass('valid');1198 }1199 else{1200 $("#cc_type").addClass('valid').removeClass('error');1201 }1202 break; 1203 1204 case "cardNumber":1205 if( $("#cardNumber").val().replace(/\s/g,"") =='' || $("#cardNumber").val() == '' || !phonefilter.test($("#cardNumber").val())) {1206 $("#cardNumber").addClass('error').removeClass('valid');1207 }1208 else{1209 $("#cardNumber").addClass('valid').removeClass('error');1210 }1211 break;1212 case "expirationMonth":1213 if( $("#expirationMonth").val().replace(/\s/g,"") =='' || $("#expirationMonth").val() == '' ) {1214 $("#expirationMonth").addClass('error').removeClass('valid');1215 }1216 else{1217 $("#expirationMonth").addClass('valid').removeClass('error');1218 }1219 break;1220 case "expirationYear":1221 if( $("#expirationYear").val().replace(/\s/g,"") =='' || $("#expirationYear").val() == '' ) {1222 $("#expirationYear").addClass('error').removeClass('valid');1223 } 1224 else{1225 $("#expirationYear").addClass('valid').removeClass('error');1226 }1227 break;1228 case "securityCode":1229 if( $("#securityCode").val().replace(/\s/g,"") =='' || $("#securityCode").val() == '' || !phonefilter.test($("#securityCode").val())) {1230 $("#securityCode").addClass('error').removeClass('valid');1231 }1232 else{1233 $("#securityCode").addClass('valid').removeClass('error');1234 }1235 }1236}1237function validate_single_thankyou(id){1238 var errors = new Array();1239 var filter = /[a-z A-Z]{1,64}$/;1240 var phonefilter = /^([0-9\-\+\(\) ]{8,22})+$/ ;1241 var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;1242 1243 switch(id){1244 case "order_process":1245 case "order_process1":1246 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1247 $("#"+id).addClass('error').removeClass('valid');1248 $("#"+id+"_e").addClass('error').removeClass('valid');1249 }1250 else{1251 $("#"+id).addClass('valid').removeClass('error');1252 $("#"+id+"_e").addClass('valid').removeClass('error');1253 }1254 break;1255 case "reason":1256 case "reason1":1257 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1258 $("#"+id).addClass('error').removeClass('valid');1259 $("#"+id+"_e").addClass('error').removeClass('valid');1260 }1261 else{1262 $("#"+id).addClass('valid').removeClass('error');1263 $("#"+id+"_e").addClass('valid').removeClass('error');1264 }1265 break;1266 case "achieve":1267 case "achieve1":1268 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1269 $("#"+id).addClass('error').removeClass('valid');1270 $("#"+id+"_e").addClass('error').removeClass('valid');1271 }1272 else{1273 $("#"+id).addClass('valid').removeClass('error');1274 $("#"+id+"_e").addClass('valid').removeClass('error');1275 }1276 break; 1277 case "find_us":1278 case "find_us1":1279 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1280 $("#"+id).addClass('error').removeClass('valid');1281 $("#"+id+"_e").addClass('error').removeClass('valid');1282 }1283 else{1284 $("#"+id).addClass('valid').removeClass('error');1285 $("#"+id+"_e").addClass('valid').removeClass('error');1286 }1287 }1288}1289function validate_single_index(id){1290 var errors = new Array();1291 var filter = /[a-z A-Z]{1,64}$/;1292 var phonefilter = /^([0-9\-\+\(\) ]{8,22})+$/ ;1293 var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;1294 1295 switch(id){1296 case "firstName":1297 case "firstName1":1298 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1299 $("#"+id).addClass('error').removeClass('valid');1300 $("#"+id+"_e").addClass('error').removeClass('valid');1301 }1302 else{1303 $("#"+id).addClass('valid').removeClass('error');1304 $("#"+id+"_e").addClass('valid').removeClass('error');1305 }1306 break;1307 case "lastName":1308 case "lastName1":1309 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1310 $("#"+id).addClass('error').removeClass('valid');1311 $("#"+id+"_e").addClass('error').removeClass('valid');1312 }1313 else{1314 $("#"+id).addClass('valid').removeClass('error');1315 $("#"+id+"_e").addClass('valid').removeClass('error');1316 }1317 break;1318 case "address":1319 case "address1":1320 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1321 $("#"+id).addClass('error').removeClass('valid');1322 $("#"+id+"_e").addClass('error').removeClass('valid');1323 }1324 else{1325 $("#"+id).addClass('valid').removeClass('error');1326 $("#"+id+"_e").addClass('valid').removeClass('error');1327 }1328 break;1329 case "City":1330 case "city1":1331 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1332 $("#"+id).addClass('error').removeClass('valid');1333 $("#"+id+"_e").addClass('error').removeClass('valid');1334 }1335 else{1336 $("#"+id).addClass('valid').removeClass('error');1337 $("#"+id+"_e").addClass('valid').removeClass('error');1338 }1339 break;1340 case "country":1341 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1342 $("#"+id).addClass('error').removeClass('valid');1343 $("#"+id+"_e").addClass('error').removeClass('valid');1344 }1345 else{1346 $("#"+id).addClass('valid').removeClass('error');1347 $("#"+id+"_e").addClass('valid').removeClass('error');1348 }1349 break;1350 case "states":1351 case "states1":1352 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1353 $("#"+id).addClass('error').removeClass('valid');1354 $("#"+id+"_e").addClass('error').removeClass('valid');1355 }1356 else{1357 $("#"+id).addClass('valid').removeClass('error');1358 $("#"+id+"_e").addClass('valid').removeClass('error');1359 }1360 break;1361 case "cc_type":1362 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1363 $("#"+id).addClass('error').removeClass('valid');1364 $("#"+id+"_e").addClass('error').removeClass('valid');1365 }1366 else{1367 $("#"+id).addClass('valid').removeClass('error');1368 $("#"+id+"_e").addClass('valid').removeClass('error');1369 }1370 break;1371 case "expirationMonth":1372 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1373 $("#"+id).addClass('error').removeClass('valid');1374 $("#"+id+"_e").addClass('error').removeClass('valid');1375 }1376 else{1377 $("#"+id).addClass('valid').removeClass('error');1378 $("#"+id+"_e").addClass('valid').removeClass('error');1379 }1380 break;1381 case "expirationYear":1382 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1383 $("#"+id).addClass('error').removeClass('valid');1384 $("#"+id+"_e").addClass('error').removeClass('valid');1385 }1386 else{1387 $("#"+id).addClass('valid').removeClass('error');1388 $("#"+id+"_e").addClass('valid').removeClass('error');1389 }1390 break;1391 case "postalCode":1392 case "postalCode1":1393 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1394 $("#"+id).addClass('error').removeClass('valid');1395 $("#"+id+"_e").addClass('error').removeClass('valid');1396 }1397 else{1398 $("#"+id).addClass('valid').removeClass('error');1399 $("#"+id+"_e").addClass('valid').removeClass('error');1400 }1401 break;1402 case "cardNumber":1403 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1404 $("#"+id).addClass('error').removeClass('valid');1405 }1406 else{1407 $("#"+id).addClass('valid').removeClass('error');1408 }1409 break;1410 case "securityCode":1411 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1412 $("#"+id).addClass('error').removeClass('valid');1413 $("#"+id+"_e").addClass('error').removeClass('valid');1414 }1415 else{1416 $("#"+id).addClass('valid').removeClass('error');1417 $("#"+id+"_e").addClass('valid').removeClass('error');1418 }1419 break;1420 case "phone":1421 case "phone1":1422 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '' || !phonefilter.test($("#"+id).val())) {1423 $("#"+id).addClass('error').removeClass('valid');1424 $("#"+id+"_e").addClass('error').removeClass('valid');1425 }1426 else{1427 $("#"+id).addClass('valid').removeClass('error');1428 $("#"+id+"_e").addClass('valid').removeClass('error');1429 }1430 case "phone":1431 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '') {1432 $("#"+id).addClass('error').removeClass('valid');1433 }1434 else{1435 $("#"+id).addClass('valid').removeClass('error');1436 }1437 break;1438 case "email":1439 case "email1":1440 if( $("#"+id).val().replace(/\s/g,"") =='' || $("#"+id).val() == '' || !emailReg.test($("#"+id).val())) {1441 $("#"+id).addClass('error').removeClass('valid');1442 $("#"+id+"_e").addClass('error').removeClass('valid');1443 }1444 else{1445 $("#"+id).addClass('valid').removeClass('error');1446 $("#"+id+"_e").addClass('valid').removeClass('error');1447 }1448 }1449}1450function onlyNumbers(e,type)1451{1452 var keynum;1453 var keychar;1454 var numcheck;1455 if(window.event) // IE1456 {1457 keynum = e.keyCode;1458 }1459 else if(e.which) // Netscape/Firefox/Opera1460 {...

Full Screen

Full Screen

jquery.uniform.min.js

Source:jquery.uniform.min.js Github

copy

Full Screen

...52 }53 p.bind({"mouseenter.uniform": function () {54 p.addClass(k.hoverClass)55 }, "mouseleave.uniform": function () {56 p.removeClass(k.hoverClass);57 p.removeClass(k.activeClass)58 }, "mousedown.uniform touchbegin.uniform": function () {59 p.addClass(k.activeClass)60 }, "mouseup.uniform touchend.uniform": function () {61 p.removeClass(k.activeClass)62 }, "click.uniform touchend.uniform": function (r) {63 if (a(r.target).is("span") || a(r.target).is("div")) {64 if (o[0].dispatchEvent) {65 var q = document.createEvent("MouseEvents");66 q.initEvent("click", true, true);67 o[0].dispatchEvent(q)68 } else {69 o[0].click()70 }71 }72 }});73 o.bind({"focus.uniform": function () {74 p.addClass(k.focusClass)75 }, "blur.uniform": function () {76 p.removeClass(k.focusClass)77 }});78 a.uniform.noSelect(p);79 b(o)80 }81 function e(o) {82 var m = a(o);83 var p = a("<div />"), l = a("<span />");84 if (!m.css("display") == "none" && k.autoHide) {85 p.hide()86 }87 p.addClass(k.selectClass);88 if (k.useID && o.attr("id") != "") {89 p.attr("id", k.idPrefix + "-" + o.attr("id"))90 }91 var n = o.find(":selected:first");92 if (n.length == 0) {93 n = o.find("option:first")94 }95 l.html(n.html());96 o.css("opacity", 0);97 o.wrap(p);98 o.before(l);99 p = o.parent("div");100 l = o.siblings("span");101 o.bind({"change.uniform": function () {102 l.text(o.find(":selected").html());103 p.removeClass(k.activeClass)104 }, "focus.uniform": function () {105 p.addClass(k.focusClass)106 }, "blur.uniform": function () {107 p.removeClass(k.focusClass);108 p.removeClass(k.activeClass)109 }, "mousedown.uniform touchbegin.uniform": function () {110 p.addClass(k.activeClass)111 }, "mouseup.uniform touchend.uniform": function () {112 p.removeClass(k.activeClass)113 }, "click.uniform touchend.uniform": function () {114 p.removeClass(k.activeClass)115 }, "mouseenter.uniform": function () {116 p.addClass(k.hoverClass)117 }, "mouseleave.uniform": function () {118 p.removeClass(k.hoverClass);119 p.removeClass(k.activeClass)120 }, "keyup.uniform": function () {121 l.text(o.find(":selected").html())122 }});123 if (a(o).attr("disabled")) {124 p.addClass(k.disabledClass)125 }126 a.uniform.noSelect(l);127 b(o)128 }129 function f(n) {130 var m = a(n);131 var o = a("<div />"), l = a("<span />");132 if (!m.css("display") == "none" && k.autoHide) {133 o.hide()134 }135 o.addClass(k.checkboxClass);136 if (k.useID && n.attr("id") != "") {137 o.attr("id", k.idPrefix + "-" + n.attr("id"))138 }139 a(n).wrap(o);140 a(n).wrap(l);141 l = n.parent();142 o = l.parent();143 a(n).css("opacity", 0).bind({"focus.uniform": function () {144 o.addClass(k.focusClass)145 }, "blur.uniform": function () {146 o.removeClass(k.focusClass)147 }, "click.uniform touchend.uniform": function () {148 if (!a(n).attr("checked")) {149 l.removeClass(k.checkedClass)150 } else {151 l.addClass(k.checkedClass)152 }153 }, "mousedown.uniform touchbegin.uniform": function () {154 o.addClass(k.activeClass)155 }, "mouseup.uniform touchend.uniform": function () {156 o.removeClass(k.activeClass)157 }, "mouseenter.uniform": function () {158 o.addClass(k.hoverClass)159 }, "mouseleave.uniform": function () {160 o.removeClass(k.hoverClass);161 o.removeClass(k.activeClass)162 }});163 if (a(n).attr("checked")) {164 l.addClass(k.checkedClass)165 }166 if (a(n).attr("disabled")) {167 o.addClass(k.disabledClass)168 }169 b(n)170 }171 function c(n) {172 var m = a(n);173 var o = a("<div />"), l = a("<span />");174 if (!m.css("display") == "none" && k.autoHide) {175 o.hide()176 }177 o.addClass(k.radioClass);178 if (k.useID && n.attr("id") != "") {179 o.attr("id", k.idPrefix + "-" + n.attr("id"))180 }181 a(n).wrap(o);182 a(n).wrap(l);183 l = n.parent();184 o = l.parent();185 a(n).css("opacity", 0).bind({"focus.uniform": function () {186 o.addClass(k.focusClass)187 }, "blur.uniform": function () {188 o.removeClass(k.focusClass)189 }, "click.uniform touchend.uniform": function () {190 if (!a(n).attr("checked")) {191 l.removeClass(k.checkedClass)192 } else {193 var p = k.radioClass.split(" ")[0];194 a("." + p + " span." + k.checkedClass + ":has([name='" + a(n).attr("name") + "'])").removeClass(k.checkedClass);195 l.addClass(k.checkedClass)196 }197 }, "mousedown.uniform touchend.uniform": function () {198 if (!a(n).is(":disabled")) {199 o.addClass(k.activeClass)200 }201 }, "mouseup.uniform touchbegin.uniform": function () {202 o.removeClass(k.activeClass)203 }, "mouseenter.uniform touchend.uniform": function () {204 o.addClass(k.hoverClass)205 }, "mouseleave.uniform": function () {206 o.removeClass(k.hoverClass);207 o.removeClass(k.activeClass)208 }});209 if (a(n).attr("checked")) {210 l.addClass(k.checkedClass)211 }212 if (a(n).attr("disabled")) {213 o.addClass(k.disabledClass)214 }215 b(n)216 }217 function h(q) {218 var o = a(q);219 var r = a("<div />"), p = a("<span>" + k.fileDefaultText + "</span>"), m = a("<span>" + k.fileBtnText + "</span>");220 if (!o.css("display") == "none" && k.autoHide) {221 r.hide()222 }223 r.addClass(k.fileClass);224 p.addClass(k.filenameClass);225 m.addClass(k.fileBtnClass);226 if (k.useID && o.attr("id") != "") {227 r.attr("id", k.idPrefix + "-" + o.attr("id"))228 }229 o.wrap(r);230 o.after(m);231 o.after(p);232 r = o.closest("div");233 p = o.siblings("." + k.filenameClass);234 m = o.siblings("." + k.fileBtnClass);235 if (!o.attr("size")) {236 var l = r.width();237 o.attr("size", l / 10)238 }239 var n = function () {240 var s = o.val();241 if (s === "") {242 s = k.fileDefaultText243 } else {244 s = s.split(/[\/\\]+/);245 s = s[(s.length - 1)]246 }247 p.text(s)248 };249 n();250 o.css("opacity", 0).bind({"focus.uniform": function () {251 r.addClass(k.focusClass)252 }, "blur.uniform": function () {253 r.removeClass(k.focusClass)254 }, "mousedown.uniform": function () {255 if (!a(q).is(":disabled")) {256 r.addClass(k.activeClass)257 }258 }, "mouseup.uniform": function () {259 r.removeClass(k.activeClass)260 }, "mouseenter.uniform": function () {261 r.addClass(k.hoverClass)262 }, "mouseleave.uniform": function () {263 r.removeClass(k.hoverClass);264 r.removeClass(k.activeClass)265 }});266 if (a.browser.msie) {267 o.bind("click.uniform.ie7", function () {268 setTimeout(n, 0)269 })270 } else {271 o.bind("change.uniform", n)272 }273 if (o.attr("disabled")) {274 r.addClass(k.disabledClass)275 }276 a.uniform.noSelect(p);277 a.uniform.noSelect(m);278 b(q)279 }280 a.uniform.restore = function (l) {281 if (l == undefined) {282 l = a(a.uniform.elements)283 }284 a(l).each(function () {285 if (a(this).is(":checkbox")) {286 a(this).unwrap().unwrap()287 } else {288 if (a(this).is("select")) {289 a(this).siblings("span").remove();290 a(this).unwrap()291 } else {292 if (a(this).is(":radio")) {293 a(this).unwrap().unwrap()294 } else {295 if (a(this).is(":file")) {296 a(this).siblings("span").remove();297 a(this).unwrap()298 } else {299 if (a(this).is("button, :submit, :reset, a, input[type='button']")) {300 a(this).unwrap().unwrap()301 }302 }303 }304 }305 }306 a(this).unbind(".uniform");307 a(this).css("opacity", "1");308 var m = a.inArray(a(l), a.uniform.elements);309 a.uniform.elements.splice(m, 1)310 })311 };312 function b(l) {313 l = a(l).get();314 if (l.length > 1) {315 a.each(l, function (m, n) {316 a.uniform.elements.push(n)317 })318 } else {319 a.uniform.elements.push(l)320 }321 }322 a.uniform.noSelect = function (l) {323 function m() {324 return false325 }326 a(l).each(function () {327 this.onselectstart = this.ondragstart = m;328 a(this).mousedown(m).css({MozUserSelect: "none"})329 })330 };331 a.uniform.update = function (l) {332 if (l == undefined) {333 l = a(a.uniform.elements)334 }335 l = a(l);336 l.each(function () {337 var n = a(this);338 if (n.is("select")) {339 var m = n.siblings("span");340 var p = n.parent("div");341 p.removeClass(k.hoverClass + " " + k.focusClass + " " + k.activeClass);342 m.html(n.find(":selected").html());343 if (n.is(":disabled")) {344 p.addClass(k.disabledClass)345 } else {346 p.removeClass(k.disabledClass)347 }348 } else {349 if (n.is(":checkbox")) {350 var m = n.closest("span");351 var p = n.closest("div");352 p.removeClass(k.hoverClass + " " + k.focusClass + " " + k.activeClass);353 m.removeClass(k.checkedClass);354 if (n.is(":checked")) {355 m.addClass(k.checkedClass)356 }357 if (n.is(":disabled")) {358 p.addClass(k.disabledClass)359 } else {360 p.removeClass(k.disabledClass)361 }362 } else {363 if (n.is(":radio")) {364 var m = n.closest("span");365 var p = n.closest("div");366 p.removeClass(k.hoverClass + " " + k.focusClass + " " + k.activeClass);367 m.removeClass(k.checkedClass);368 if (n.is(":checked")) {369 m.addClass(k.checkedClass)370 }371 if (n.is(":disabled")) {372 p.addClass(k.disabledClass)373 } else {374 p.removeClass(k.disabledClass)375 }376 } else {377 if (n.is(":file")) {378 var p = n.parent("div");379 var o = n.siblings(k.filenameClass);380 btnTag = n.siblings(k.fileBtnClass);381 p.removeClass(k.hoverClass + " " + k.focusClass + " " + k.activeClass);382 o.text(n.val());383 if (n.is(":disabled")) {384 p.addClass(k.disabledClass)385 } else {386 p.removeClass(k.disabledClass)387 }388 } else {389 if (n.is(":submit") || n.is(":reset") || n.is("button") || n.is("a") || l.is("input[type=button]")) {390 var p = n.closest("div");391 p.removeClass(k.hoverClass + " " + k.focusClass + " " + k.activeClass);392 if (n.is(":disabled")) {393 p.addClass(k.disabledClass)394 } else {395 p.removeClass(k.disabledClass)396 }397 }398 }399 }400 }401 }402 })403 };404 return this.each(function () {405 if (a.support.selectOpacity) {406 var l = a(this);407 if (l.is("select")) {408 if (l.attr("multiple") != true) {409 if (l.attr("size") == undefined || l.attr("size") <= 1) {...

Full Screen

Full Screen

styleswi.js

Source:styleswi.js Github

copy

Full Screen

...46 var startClass = jQuery.cookie('mycookie');47 jQuery("body").addClass("wood");48/* crossed */49jQuery("#crossed").click( function(){ 50 jQuery("body").removeClass('fabric');51 jQuery("body").removeClass('linen');52 jQuery("body").removeClass('wood');53 jQuery("body").removeClass('diagmonds');54 jQuery("body").removeClass('triangles');55 jQuery("body").removeClass('black_mamba');56 jQuery("body").removeClass('vichy');57 jQuery("body").removeClass('back_pattern');58 jQuery("body").removeClass('checkered_pattern');59 jQuery("body").removeClass('diamond_upholstery');60 jQuery("body").removeClass('lyonnette');61 jQuery("body").removeClass('graphy');62 jQuery("body").removeClass('black_thread');63 jQuery("body").removeClass('subtlenet2');64 jQuery("body").addClass('crossed');65 jQuery.cookie('mycookie','crossed');66});67/* fabric */68jQuery("#fabric").click( function(){ 69 jQuery("body").removeClass('crossed');70 jQuery("body").removeClass('linen');71 jQuery("body").removeClass('wood');72 jQuery("body").removeClass('diagmonds');73 jQuery("body").removeClass('triangles');74 jQuery("body").removeClass('black_mamba');75 jQuery("body").removeClass('vichy');76 jQuery("body").removeClass('back_pattern');77 jQuery("body").removeClass('checkered_pattern');78 jQuery("body").removeClass('diamond_upholstery');79 jQuery("body").removeClass('lyonnette');80 jQuery("body").removeClass('graphy');81 jQuery("body").removeClass('black_thread');82 jQuery("body").removeClass('subtlenet2');83 jQuery("body").addClass('fabric');84 jQuery.cookie('mycookie','fabric');85});86/* linen */87jQuery("#linen").click( function(){ 88 jQuery("body").removeClass('crossed');89 jQuery("body").removeClass('fabric');90 jQuery("body").removeClass('wood');91 jQuery("body").removeClass('diagmonds');92 jQuery("body").removeClass('triangles');93 jQuery("body").removeClass('black_mamba');94 jQuery("body").removeClass('vichy');95 jQuery("body").removeClass('back_pattern');96 jQuery("body").removeClass('checkered_pattern');97 jQuery("body").removeClass('diamond_upholstery');98 jQuery("body").removeClass('lyonnette');99 jQuery("body").removeClass('graphy');100 jQuery("body").removeClass('black_thread');101 jQuery("body").removeClass('subtlenet2');102 jQuery("body").addClass('linen');103 jQuery.cookie('mycookie','linen');104});105/* wood */106jQuery("#wood").click( function(){ 107 jQuery("body").removeClass('crossed');108 jQuery("body").removeClass('fabric');109 jQuery("body").removeClass('linen');110 jQuery("body").removeClass('diagmonds');111 jQuery("body").removeClass('triangles');112 jQuery("body").removeClass('black_mamba');113 jQuery("body").removeClass('vichy');114 jQuery("body").removeClass('back_pattern');115 jQuery("body").removeClass('checkered_pattern');116 jQuery("body").removeClass('diamond_upholstery');117 jQuery("body").removeClass('lyonnette');118 jQuery("body").removeClass('graphy');119 jQuery("body").removeClass('black_thread');120 jQuery("body").removeClass('subtlenet2');121 jQuery("body").addClass('wood');122 jQuery.cookie('mycookie','wood');123});124/* diagmonds */125jQuery("#diagmonds").click( function(){ 126 jQuery("body").removeClass('crossed');127 jQuery("body").removeClass('fabric');128 jQuery("body").removeClass('linen');129 jQuery("body").removeClass('wood');130 jQuery("body").removeClass('triangles');131 jQuery("body").removeClass('black_mamba');132 jQuery("body").removeClass('vichy');133 jQuery("body").removeClass('back_pattern');134 jQuery("body").removeClass('checkered_pattern');135 jQuery("body").removeClass('diamond_upholstery');136 jQuery("body").removeClass('lyonnette');137 jQuery("body").removeClass('graphy');138 jQuery("body").removeClass('black_thread');139 jQuery("body").removeClass('subtlenet2');140 jQuery("body").addClass('diagmonds');141 jQuery.cookie('mycookie','diagmonds');142});143/* triangles */144jQuery("#triangles").click( function(){ 145 jQuery("body").removeClass('crossed');146 jQuery("body").removeClass('fabric');147 jQuery("body").removeClass('linen');148 jQuery("body").removeClass('wood');149 jQuery("body").removeClass('diagmonds');150 jQuery("body").removeClass('black_mamba');151 jQuery("body").removeClass('vichy');152 jQuery("body").removeClass('back_pattern');153 jQuery("body").removeClass('checkered_pattern');154 jQuery("body").removeClass('diamond_upholstery');155 jQuery("body").removeClass('lyonnette');156 jQuery("body").removeClass('graphy');157 jQuery("body").removeClass('black_thread');158 jQuery("body").removeClass('subtlenet2');159 jQuery("body").addClass('triangles');160 jQuery.cookie('mycookie','triangles');161});162/* triangles */163jQuery("#black_mamba").click( function(){ 164 jQuery("body").removeClass('crossed');165 jQuery("body").removeClass('fabric');166 jQuery("body").removeClass('linen');167 jQuery("body").removeClass('wood');168 jQuery("body").removeClass('diagmonds');169 jQuery("body").removeClass('triangles');170 jQuery("body").removeClass('vichy');171 jQuery("body").removeClass('back_pattern');172 jQuery("body").removeClass('checkered_pattern');173 jQuery("body").removeClass('diamond_upholstery');174 jQuery("body").removeClass('lyonnette');175 jQuery("body").removeClass('graphy');176 jQuery("body").removeClass('black_thread');177 jQuery("body").removeClass('subtlenet2');178 jQuery("body").addClass('black_mamba');179 jQuery.cookie('mycookie','black_mamba');180});181/* vichy */182jQuery("#vichy").click( function(){ 183 jQuery("body").removeClass('crossed');184 jQuery("body").removeClass('fabric');185 jQuery("body").removeClass('linen');186 jQuery("body").removeClass('wood');187 jQuery("body").removeClass('diagmonds');188 jQuery("body").removeClass('triangles');189 jQuery("body").removeClass('black_mamba');190 jQuery("body").removeClass('back_pattern');191 jQuery("body").removeClass('checkered_pattern');192 jQuery("body").removeClass('diamond_upholstery');193 jQuery("body").removeClass('lyonnette');194 jQuery("body").removeClass('graphy');195 jQuery("body").removeClass('black_thread');196 jQuery("body").removeClass('subtlenet2');197 jQuery("body").addClass('vichy');198 jQuery.cookie('mycookie','vichy');199});200/* back_pattern */201jQuery("#back_pattern").click( function(){ 202 jQuery("body").removeClass('crossed');203 jQuery("body").removeClass('fabric');204 jQuery("body").removeClass('linen');205 jQuery("body").removeClass('wood');206 jQuery("body").removeClass('diagmonds');207 jQuery("body").removeClass('triangles');208 jQuery("body").removeClass('black_mamba');209 jQuery("body").removeClass('vichy');210 jQuery("body").removeClass('checkered_pattern');211 jQuery("body").removeClass('diamond_upholstery');212 jQuery("body").removeClass('lyonnette');213 jQuery("body").removeClass('graphy');214 jQuery("body").removeClass('black_thread');215 jQuery("body").removeClass('subtlenet2');216 jQuery("body").addClass('back_pattern');217 jQuery.cookie('mycookie','back_pattern');218});219/* checkered_pattern */220jQuery("#checkered_pattern").click( function(){ 221 jQuery("body").removeClass('crossed');222 jQuery("body").removeClass('fabric');223 jQuery("body").removeClass('linen');224 jQuery("body").removeClass('wood');225 jQuery("body").removeClass('diagmonds');226 jQuery("body").removeClass('triangles');227 jQuery("body").removeClass('black_mamba');228 jQuery("body").removeClass('vichy');229 jQuery("body").removeClass('back_pattern');230 jQuery("body").removeClass('diamond_upholstery');231 jQuery("body").removeClass('lyonnette');232 jQuery("body").removeClass('graphy');233 jQuery("body").removeClass('black_thread');234 jQuery("body").removeClass('subtlenet2');235 jQuery("body").addClass('checkered_pattern');236 jQuery.cookie('mycookie','checkered_pattern');237});238/* diamond_upholstery */239jQuery("#diamond_upholstery").click( function(){ 240 jQuery("body").removeClass('crossed');241 jQuery("body").removeClass('fabric');242 jQuery("body").removeClass('linen');243 jQuery("body").removeClass('wood');244 jQuery("body").removeClass('diagmonds');245 jQuery("body").removeClass('triangles');246 jQuery("body").removeClass('black_mamba');247 jQuery("body").removeClass('vichy');248 jQuery("body").removeClass('back_pattern');249 jQuery("body").removeClass('checkered_pattern');250 jQuery("body").removeClass('lyonnette');251 jQuery("body").removeClass('graphy');252 jQuery("body").removeClass('black_thread');253 jQuery("body").removeClass('subtlenet2');254 jQuery("body").addClass('diamond_upholstery');255 jQuery.cookie('mycookie','diamond_upholstery');256});257/* lyonnette */258jQuery("#lyonnette").click( function(){ 259 jQuery("body").removeClass('crossed');260 jQuery("body").removeClass('fabric');261 jQuery("body").removeClass('linen');262 jQuery("body").removeClass('wood');263 jQuery("body").removeClass('diagmonds');264 jQuery("body").removeClass('triangles');265 jQuery("body").removeClass('black_mamba');266 jQuery("body").removeClass('vichy');267 jQuery("body").removeClass('back_pattern');268 jQuery("body").removeClass('checkered_pattern');269 jQuery("body").removeClass('diamond_upholstery');270 jQuery("body").removeClass('graphy');271 jQuery("body").removeClass('black_thread');272 jQuery("body").removeClass('subtlenet2');273 jQuery("body").addClass('lyonnette');274 jQuery.cookie('mycookie','lyonnette');275});276/* graphy */277jQuery("#graphy").click( function(){ 278 jQuery("body").removeClass('crossed');279 jQuery("body").removeClass('fabric');280 jQuery("body").removeClass('linen');281 jQuery("body").removeClass('wood');282 jQuery("body").removeClass('diagmonds');283 jQuery("body").removeClass('triangles');284 jQuery("body").removeClass('black_mamba');285 jQuery("body").removeClass('vichy');286 jQuery("body").removeClass('back_pattern');287 jQuery("body").removeClass('checkered_pattern');288 jQuery("body").removeClass('diamond_upholstery');289 jQuery("body").removeClass('lyonnette');290 jQuery("body").removeClass('black_thread');291 jQuery("body").removeClass('subtlenet2');292 jQuery("body").addClass('graphy');293 jQuery.cookie('mycookie','graphy');294});295/* black_thread */296jQuery("#black_thread").click( function(){ 297 jQuery("body").removeClass('crossed');298 jQuery("body").removeClass('fabric');299 jQuery("body").removeClass('linen');300 jQuery("body").removeClass('wood');301 jQuery("body").removeClass('diagmonds');302 jQuery("body").removeClass('triangles');303 jQuery("body").removeClass('black_mamba');304 jQuery("body").removeClass('vichy');305 jQuery("body").removeClass('back_pattern');306 jQuery("body").removeClass('checkered_pattern');307 jQuery("body").removeClass('diamond_upholstery');308 jQuery("body").removeClass('lyonnette');309 jQuery("body").removeClass('graphy');310 jQuery("body").removeClass('subtlenet2');311 jQuery("body").addClass('black_thread');312 jQuery.cookie('mycookie','black_thread');313});314/* subtlenet2 */315jQuery("#subtlenet2").click( function(){ 316 jQuery("body").removeClass('crossed');317 jQuery("body").removeClass('fabric');318 jQuery("body").removeClass('linen');319 jQuery("body").removeClass('wood');320 jQuery("body").removeClass('diagmonds');321 jQuery("body").removeClass('triangles');322 jQuery("body").removeClass('black_mamba');323 jQuery("body").removeClass('vichy');324 jQuery("body").removeClass('back_pattern');325 jQuery("body").removeClass('checkered_pattern');326 jQuery("body").removeClass('diamond_upholstery');327 jQuery("body").removeClass('lyonnette');328 jQuery("body").removeClass('graphy');329 jQuery("body").removeClass('black_thread');330 jQuery("body").addClass('subtlenet2');331 jQuery.cookie('mycookie','subtlenet2');332});333if (jQuery.cookie('mycookie')) {334 jQuery('body').addClass(jQuery.cookie('mycookie'));335}336});337/* Skins Style */338jQuery(document).ready(function(){ 339var cookieName = 'default';340function changeLayout(layout) {341jQuery.cookie(cookieName, layout);342jQuery('head link[name=skins]').attr('href', 'css/skins/' + layout + '.css');343}344if( jQuery.cookie(cookieName)) {345changeLayout(jQuery.cookie(cookieName));346}347jQuery("#default").click( function(){ jQuery348changeLayout('default');349});350jQuery("#golden").click( function(){ jQuery351changeLayout('golden');352});353jQuery("#blue").click( function(){ jQuery354changeLayout('blue');355});356jQuery("#red").click( function(){ jQuery357changeLayout('red');358});359jQuery("#purple").click( function(){ jQuery360changeLayout('purple');361});362});363/* Reset Switcher */364jQuery(document).ready(function(){ 365// Style Switcher 366jQuery('.switcher').animate({367left: '-160px'368});369jQuery('.switcher h2 a').click(function(e){370e.preventDefault();371var div = jQuery('.switcher');372console.log(div.css('left'));373if (div.css('left') === '-160px') {374jQuery('.switcher').animate({375 left: '0px'376}); 377} else {378jQuery('.switcher').animate({379 left: '-160px'380});381}382})383/*jQuery('a.color').click(function(e){384e.preventDefault();385jQuery(this).parent().parent().find('a').removeClass('selected');386jQuery(this).addClass('selected');387})388jQuery('a.pattern').click(function(e){389e.preventDefault();390jQuery(this).parent().parent().find('a').removeClass('selected2');391jQuery(this).addClass('selected2');392})393jQuery('a.layout').click(function(e){394e.preventDefault();395jQuery(this).parent().parent().find('a').removeClass('selected3');396jQuery(this).addClass('selected3');397})*/398 ...

Full Screen

Full Screen

styleswitch.js

Source:styleswitch.js Github

copy

Full Screen

...75 var startClass = $.cookie('mycookie');76 $("body").addClass("wood");77/* crossed */78$("#crossed").click( function(){ 79 $("body").removeClass('wood');80 $("body").removeClass('fabric');81 $("body").removeClass('linen');82 $("body").removeClass('diagmonds');83 $("body").removeClass('triangles');84 $("body").removeClass('black_mamba');85 $("body").removeClass('vichy');86 $("body").removeClass('back_pattern');87 $("body").removeClass('checkered_pattern');88 $("body").removeClass('diamond_upholstery');89 $("body").removeClass('lyonnette');90 $("body").removeClass('graphy');91 $("body").removeClass('black_thread');92 $("body").removeClass('subtlenet2');93 $("body").addClass('crossed');94 $.cookie('mycookie','crossed');95});96/* fabric */97$("#fabric").click( function(){ 98 $("body").removeClass('crossed');99 $("body").removeClass('linen');100 $("body").removeClass('wood');101 $("body").removeClass('diagmonds');102 $("body").removeClass('triangles');103 $("body").removeClass('black_mamba');104 $("body").removeClass('vichy');105 $("body").removeClass('back_pattern');106 $("body").removeClass('checkered_pattern');107 $("body").removeClass('diamond_upholstery');108 $("body").removeClass('lyonnette');109 $("body").removeClass('graphy');110 $("body").removeClass('black_thread');111 $("body").removeClass('subtlenet2');112 $("body").addClass('fabric');113 $.cookie('mycookie','fabric');114});115/* linen */116$("#linen").click( function(){ 117 $("body").removeClass('crossed');118 $("body").removeClass('fabric');119 $("body").removeClass('wood');120 $("body").removeClass('diagmonds');121 $("body").removeClass('triangles');122 $("body").removeClass('black_mamba');123 $("body").removeClass('vichy');124 $("body").removeClass('back_pattern');125 $("body").removeClass('checkered_pattern');126 $("body").removeClass('diamond_upholstery');127 $("body").removeClass('lyonnette');128 $("body").removeClass('graphy');129 $("body").removeClass('black_thread');130 $("body").removeClass('subtlenet2');131 $("body").addClass('linen');132 $.cookie('mycookie','linen');133});134/* wood */135$("#wood").click( function(){ 136 $("body").removeClass('crossed');137 $("body").removeClass('fabric');138 $("body").removeClass('linen');139 $("body").removeClass('diagmonds');140 $("body").removeClass('triangles');141 $("body").removeClass('black_mamba');142 $("body").removeClass('vichy');143 $("body").removeClass('back_pattern');144 $("body").removeClass('checkered_pattern');145 $("body").removeClass('diamond_upholstery');146 $("body").removeClass('lyonnette');147 $("body").removeClass('graphy');148 $("body").removeClass('black_thread');149 $("body").removeClass('subtlenet2');150 $("body").addClass('wood');151 $.cookie('mycookie','wood');152});153/* diagmonds */154$("#diagmonds").click( function(){ 155 $("body").removeClass('crossed');156 $("body").removeClass('fabric');157 $("body").removeClass('linen');158 $("body").removeClass('wood');159 $("body").removeClass('triangles');160 $("body").removeClass('black_mamba');161 $("body").removeClass('vichy');162 $("body").removeClass('back_pattern');163 $("body").removeClass('checkered_pattern');164 $("body").removeClass('diamond_upholstery');165 $("body").removeClass('lyonnette');166 $("body").removeClass('graphy');167 $("body").removeClass('black_thread');168 $("body").removeClass('subtlenet2');169 $("body").addClass('diagmonds');170 $.cookie('mycookie','diagmonds');171});172/* triangles */173$("#triangles").click( function(){ 174 $("body").removeClass('crossed');175 $("body").removeClass('fabric');176 $("body").removeClass('linen');177 $("body").removeClass('wood');178 $("body").removeClass('diagmonds');179 $("body").removeClass('black_mamba');180 $("body").removeClass('vichy');181 $("body").removeClass('back_pattern');182 $("body").removeClass('checkered_pattern');183 $("body").removeClass('diamond_upholstery');184 $("body").removeClass('lyonnette');185 $("body").removeClass('graphy');186 $("body").removeClass('black_thread');187 $("body").removeClass('subtlenet2');188 $("body").addClass('triangles');189 $.cookie('mycookie','triangles');190});191/* triangles */192$("#black_mamba").click( function(){ 193 $("body").removeClass('crossed');194 $("body").removeClass('fabric');195 $("body").removeClass('linen');196 $("body").removeClass('wood');197 $("body").removeClass('diagmonds');198 $("body").removeClass('triangles');199 $("body").removeClass('vichy');200 $("body").removeClass('back_pattern');201 $("body").removeClass('checkered_pattern');202 $("body").removeClass('diamond_upholstery');203 $("body").removeClass('lyonnette');204 $("body").removeClass('graphy');205 $("body").removeClass('black_thread');206 $("body").removeClass('subtlenet2');207 $("body").addClass('black_mamba');208 $.cookie('mycookie','black_mamba');209});210/* vichy */211$("#vichy").click( function(){ 212 $("body").removeClass('crossed');213 $("body").removeClass('fabric');214 $("body").removeClass('linen');215 $("body").removeClass('wood');216 $("body").removeClass('diagmonds');217 $("body").removeClass('triangles');218 $("body").removeClass('black_mamba');219 $("body").removeClass('back_pattern');220 $("body").removeClass('checkered_pattern');221 $("body").removeClass('diamond_upholstery');222 $("body").removeClass('lyonnette');223 $("body").removeClass('graphy');224 $("body").removeClass('black_thread');225 $("body").removeClass('subtlenet2');226 $("body").addClass('vichy');227 $.cookie('mycookie','vichy');228});229/* back_pattern */230$("#back_pattern").click( function(){ 231 $("body").removeClass('crossed');232 $("body").removeClass('fabric');233 $("body").removeClass('linen');234 $("body").removeClass('wood');235 $("body").removeClass('diagmonds');236 $("body").removeClass('triangles');237 $("body").removeClass('black_mamba');238 $("body").removeClass('vichy');239 $("body").removeClass('checkered_pattern');240 $("body").removeClass('diamond_upholstery');241 $("body").removeClass('lyonnette');242 $("body").removeClass('graphy');243 $("body").removeClass('black_thread');244 $("body").removeClass('subtlenet2');245 $("body").addClass('back_pattern');246 $.cookie('mycookie','back_pattern');247});248/* checkered_pattern */249$("#checkered_pattern").click( function(){ 250 $("body").removeClass('crossed');251 $("body").removeClass('fabric');252 $("body").removeClass('linen');253 $("body").removeClass('wood');254 $("body").removeClass('diagmonds');255 $("body").removeClass('triangles');256 $("body").removeClass('black_mamba');257 $("body").removeClass('vichy');258 $("body").removeClass('back_pattern');259 $("body").removeClass('diamond_upholstery');260 $("body").removeClass('lyonnette');261 $("body").removeClass('graphy');262 $("body").removeClass('black_thread');263 $("body").removeClass('subtlenet2');264 $("body").addClass('checkered_pattern');265 $.cookie('mycookie','checkered_pattern');266});267/* diamond_upholstery */268$("#diamond_upholstery").click( function(){ 269 $("body").removeClass('crossed');270 $("body").removeClass('fabric');271 $("body").removeClass('linen');272 $("body").removeClass('wood');273 $("body").removeClass('diagmonds');274 $("body").removeClass('triangles');275 $("body").removeClass('black_mamba');276 $("body").removeClass('vichy');277 $("body").removeClass('back_pattern');278 $("body").removeClass('checkered_pattern');279 $("body").removeClass('lyonnette');280 $("body").removeClass('graphy');281 $("body").removeClass('black_thread');282 $("body").removeClass('subtlenet2');283 $("body").addClass('diamond_upholstery');284 $.cookie('mycookie','diamond_upholstery');285});286/* lyonnette */287$("#lyonnette").click( function(){ 288 $("body").removeClass('crossed');289 $("body").removeClass('fabric');290 $("body").removeClass('linen');291 $("body").removeClass('wood');292 $("body").removeClass('diagmonds');293 $("body").removeClass('triangles');294 $("body").removeClass('black_mamba');295 $("body").removeClass('vichy');296 $("body").removeClass('back_pattern');297 $("body").removeClass('checkered_pattern');298 $("body").removeClass('diamond_upholstery');299 $("body").removeClass('graphy');300 $("body").removeClass('black_thread');301 $("body").removeClass('subtlenet2');302 $("body").addClass('lyonnette');303 $.cookie('mycookie','lyonnette');304});305/* graphy */306$("#graphy").click( function(){ 307 $("body").removeClass('crossed');308 $("body").removeClass('fabric');309 $("body").removeClass('linen');310 $("body").removeClass('wood');311 $("body").removeClass('diagmonds');312 $("body").removeClass('triangles');313 $("body").removeClass('black_mamba');314 $("body").removeClass('vichy');315 $("body").removeClass('back_pattern');316 $("body").removeClass('checkered_pattern');317 $("body").removeClass('diamond_upholstery');318 $("body").removeClass('lyonnette');319 $("body").removeClass('black_thread');320 $("body").removeClass('subtlenet2');321 $("body").addClass('graphy');322 $.cookie('mycookie','graphy');323});324/* black_thread */325$("#black_thread").click( function(){ 326 $("body").removeClass('crossed');327 $("body").removeClass('fabric');328 $("body").removeClass('linen');329 $("body").removeClass('wood');330 $("body").removeClass('diagmonds');331 $("body").removeClass('triangles');332 $("body").removeClass('black_mamba');333 $("body").removeClass('vichy');334 $("body").removeClass('back_pattern');335 $("body").removeClass('checkered_pattern');336 $("body").removeClass('diamond_upholstery');337 $("body").removeClass('lyonnette');338 $("body").removeClass('graphy');339 $("body").removeClass('subtlenet2');340 $("body").addClass('black_thread');341 $.cookie('mycookie','black_thread');342});343/* subtlenet2 */344$("#subtlenet2").click( function(){ 345 $("body").removeClass('crossed');346 $("body").removeClass('fabric');347 $("body").removeClass('linen');348 $("body").removeClass('wood');349 $("body").removeClass('diagmonds');350 $("body").removeClass('triangles');351 $("body").removeClass('black_mamba');352 $("body").removeClass('vichy');353 $("body").removeClass('back_pattern');354 $("body").removeClass('checkered_pattern');355 $("body").removeClass('diamond_upholstery');356 $("body").removeClass('lyonnette');357 $("body").removeClass('graphy');358 $("body").removeClass('black_thread');359 $("body").addClass('subtlenet2');360 $.cookie('mycookie','subtlenet2');361});362if ($.cookie('mycookie')) {363 $('body').addClass($.cookie('mycookie'));364}365});366/* Skins Style */367$(document).ready(function($){368 var cookieName = 'default';369 function changeLayout(layout) {370 $.cookie(cookieName, layout);371 $('head link[data-name=skins]').attr('href', 'css/skins/' + layout + '.css');372 }...

Full Screen

Full Screen

color-switcher.js

Source:color-switcher.js Github

copy

Full Screen

...181 jQuery("#wrap").addClass("boxed-layout"); 182 jQuery("body").addClass("bg1-body"); 183 }); 184 jQuery(".layouts #wide").click(function() { 185 jQuery("#wrap").removeClass("boxed-layout"); 186 jQuery("body").removeClass("bg1"); 187 }); 188 189 190 jQuery(".layouts #dark-night").click(function() { 191 jQuery("#wrap").addClass("dark-version"); 192 }); 193 jQuery(".layouts #light-day").click(function() { 194 jQuery("#wrap").removeClass("dark-version"); 195 }); 196 197 198 199 //add backgrounds 200 jQuery("#bg-one").click(function() { 201 jQuery("body").addClass("bg1"); 202 jQuery("body").removeClass("bg2"); 203 jQuery("body").removeClass("bg3"); 204 jQuery("body").removeClass("bg4"); 205 jQuery("body").removeClass("bg5"); 206 jQuery("body").removeClass("bg6"); 207 jQuery("body").removeClass("bg7"); 208 jQuery("body").removeClass("bg8"); 209 jQuery("body").removeClass("bg9"); 210 jQuery("body").removeClass("bg10"); 211 }); 212 213 jQuery("#bg-two").click(function() { 214 jQuery("body").removeClass("bg1"); 215 jQuery("body").addClass("bg2"); 216 jQuery("body").removeClass("bg3"); 217 jQuery("body").removeClass("bg4"); 218 jQuery("body").removeClass("bg5"); 219 jQuery("body").removeClass("bg6"); 220 jQuery("body").removeClass("bg7"); 221 jQuery("body").removeClass("bg8"); 222 jQuery("body").removeClass("bg9"); 223 jQuery("body").removeClass("bg10"); 224 }); 225 226 jQuery("#bg-three").click(function() { 227 jQuery("body").removeClass("bg1"); 228 jQuery("body").removeClass("bg2"); 229 jQuery("body").addClass("bg3"); 230 jQuery("body").removeClass("bg4"); 231 jQuery("body").removeClass("bg5"); 232 jQuery("body").removeClass("bg6"); 233 jQuery("body").removeClass("bg7"); 234 jQuery("body").removeClass("bg8"); 235 jQuery("body").removeClass("bg9"); 236 jQuery("body").removeClass("bg10"); 237 }); 238 239 jQuery("#bg-four").click(function() { 240 jQuery("body").removeClass("bg1"); 241 jQuery("body").removeClass("bg2"); 242 jQuery("body").removeClass("bg3"); 243 jQuery("body").addClass("bg4"); 244 jQuery("body").removeClass("bg5"); 245 jQuery("body").removeClass("bg6"); 246 jQuery("body").removeClass("bg7"); 247 jQuery("body").removeClass("bg8"); 248 jQuery("body").removeClass("bg9"); 249 jQuery("body").removeClass("bg10"); 250 }); 251 252 jQuery("#bg-five").click(function() { 253 jQuery("body").removeClass("bg1"); 254 jQuery("body").removeClass("bg2"); 255 jQuery("body").removeClass("bg3"); 256 jQuery("body").removeClass("bg4"); 257 jQuery("body").addClass("bg5"); 258 jQuery("body").removeClass("bg6"); 259 jQuery("body").removeClass("bg7"); 260 jQuery("body").removeClass("bg8"); 261 jQuery("body").removeClass("bg9"); 262 jQuery("body").removeClass("bg10"); 263 }); 264 265 jQuery("#bg-six").click(function() { 266 jQuery("body").removeClass("bg1"); 267 jQuery("body").removeClass("bg2"); 268 jQuery("body").removeClass("bg3"); 269 jQuery("body").removeClass("bg4"); 270 jQuery("body").removeClass("bg5"); 271 jQuery("body").addClass("bg6"); 272 jQuery("body").removeClass("bg7"); 273 jQuery("body").removeClass("bg8"); 274 jQuery("body").removeClass("bg9"); 275 jQuery("body").removeClass("bg10"); 276 }); 277 278 jQuery("#bg-seven").click(function() { 279 jQuery("body").removeClass("bg1"); 280 jQuery("body").removeClass("bg2"); 281 jQuery("body").removeClass("bg3"); 282 jQuery("body").removeClass("bg4"); 283 jQuery("body").removeClass("bg5"); 284 jQuery("body").removeClass("bg6"); 285 jQuery("body").addClass("bg7"); 286 jQuery("body").removeClass("bg8"); 287 jQuery("body").removeClass("bg9"); 288 jQuery("body").removeClass("bg10"); 289 }); 290 291 jQuery("#bg-eight").click(function() { 292 jQuery("body").removeClass("bg1"); 293 jQuery("body").removeClass("bg2"); 294 jQuery("body").removeClass("bg3"); 295 jQuery("body").removeClass("bg4"); 296 jQuery("body").removeClass("bg5"); 297 jQuery("body").removeClass("bg6"); 298 jQuery("body").removeClass("bg7"); 299 jQuery("body").addClass("bg8"); 300 jQuery("body").removeClass("bg9"); 301 jQuery("body").removeClass("bg10"); 302 }); 303 304 jQuery("#bg-nine").click(function() { 305 jQuery("body").removeClass("bg1"); 306 jQuery("body").removeClass("bg2"); 307 jQuery("body").removeClass("bg3"); 308 jQuery("body").removeClass("bg4"); 309 jQuery("body").removeClass("bg5"); 310 jQuery("body").removeClass("bg6"); 311 jQuery("body").removeClass("bg7"); 312 jQuery("body").removeClass("bg8"); 313 jQuery("body").addClass("bg9"); 314 jQuery("body").removeClass("bg10"); 315 }); 316 317 jQuery("#bg-ten").click(function() { 318 jQuery("body").removeClass("bg1"); 319 jQuery("body").removeClass("bg2"); 320 jQuery("body").removeClass("bg3"); 321 jQuery("body").removeClass("bg4"); 322 jQuery("body").removeClass("bg5"); 323 jQuery("body").removeClass("bg6"); 324 jQuery("body").removeClass("bg7"); 325 jQuery("body").removeClass("bg8"); 326 jQuery("body").removeClass("bg9"); 327 jQuery("body").addClass("bg10"); 328 }); 329 jQuery("#bg-one, #bg-two, #bg-three, #bg-four, #bg-five, #bg-six, #bg-seven, #bg-eight, #bg-nine, #bg-ten").click(function() { 330 jQuery("#wrapper").addClass("boxed-layout"); 331 }); 332 jQuery("#wide").click(function() { 333 jQuery("body").removeClass("bg1 bg2 bg3 bg4 bg5 bg6 bg7 bg8 bg9 bg10"); 334 }); 335 336 337 jQuery("#light").click(function() { 338 jQuery("#footer").addClass("light"); 339 jQuery("#footer").removeClass("dark"); 340 jQuery("#footer img").attr("src", "images/footer-logo.jpg"); 341 }); 342 jQuery("#dark").click(function() { 343 jQuery("#footer").addClass("dark"); 344 jQuery("#footer").removeClass("light"); 345 jQuery("#footer img").attr("src", "images/footer-logo-dark.jpg"); 346 }); 347 348 jQuery("#header-n").click(function() { 349 jQuery("body").removeClass("fixed-header"); 350 }); 351 jQuery("#header-f").click(function() { 352 jQuery("body").addClass("fixed-header"); 353 }); 354 355 356 357 // picker buttton 358 jQuery(".picker_close").click(function() { 359 360 jQuery("#choose_color").toggleClass("position"); 361 362 }); 363 364 //header 365 366 //stickey header 367 jQuery(window).scroll(function() { 368 var scroll = jQuery(window).scrollTop(); 369 if (scroll >= 40) { 370 jQuery(".fixed-header").addClass("small-header"); 371 } else { 372 jQuery(".fixed-header").removeClass("small-header"); 373 } 374 }); 375 376 377 ...

Full Screen

Full Screen

tocolor.js

Source:tocolor.js Github

copy

Full Screen

1function toyellow(){2 /* 绿变黄 */3 $('.green').removeClass('green').addClass('yellow');4 $('.green-g').removeClass('green-g').addClass('yellow-y');5 $('.green-none').removeClass('green-none').addClass('yellow-none');6 $('.green-left').removeClass('green-left').addClass('yellow-left');7 $('.green-box').removeClass('green-box').addClass('yellow-box');8 /*蓝变黄 */9 $('.blue').removeClass('blue').addClass('yellow');10 $('.blue-b').removeClass('blue-b').addClass('yellow-y');11 $('.blue-none').removeClass('blue-none').addClass('yellow-none');12 $('.blue-left').removeClass('blue-left').addClass('yellow-left');13 $('.blue-box').removeClass('blue-box').addClass('yellow-box');14 /* 红变黄 */15 $('.red').removeClass('red').addClass('yellow');16 $('.red-r').removeClass('red-r').addClass('yellow-y');17 $('.red-none').removeClass('red-none').addClass('yellow-none');18 $('.red-left').removeClass('red-left').addClass('yellow-left');19 $('.red-box').removeClass('red-box').addClass('yellow-box');20}21function toblue(){22 /* 绿变黄 */23 $('.green').removeClass('green').addClass('blue');24 $('.green-g').removeClass('green-g').addClass('blue-b');25 $('.green-none').removeClass('green-none').addClass('blue-none');26 $('.green-left').removeClass('green-left').addClass('blue-left');27 $('.green-box').removeClass('green-box').addClass('blue-box');28 /* 红变黄 */29 $('.red').removeClass('red').addClass('blue');30 $('.red-r').removeClass('red-r').addClass('blue-b');31 $('.red-none').removeClass('red-none').addClass('blue-none');32 $('.red-left').removeClass('red-left').addClass('blue-left');33 $('.red-box').removeClass('red-box').addClass('blue-box');34 /* 红变黄 */35 $('.yellow').removeClass('yellow').addClass('blue');36 $('.yellow-y').removeClass('yellow-y').addClass('blue-b');37 $('.yellow-none').removeClass('yellow-none').addClass('blue-none');38 $('.yellow-left').removeClass('yellow-left').addClass('blue-left');39 $('.yellow-box').removeClass('yellow-box').addClass('blue-box');40}41function tored(){42 /* 绿变黄 */43 $('.green').removeClass('green').addClass('red');44 $('.green-g').removeClass('green-g').addClass('red-r');45 $('.green-none').removeClass('green-none').addClass('red-none');46 $('.green-left').removeClass('green-left').addClass('red-left');47 $('.green-box').removeClass('green-box').addClass('red-box');48 /*蓝变黄 */49 $('.blue').removeClass('blue').addClass('red');50 $('.blue-b').removeClass('blue-b').addClass('red-r');51 $('.blue-none').removeClass('blue-none').addClass('red-none');52 $('.blue-left').removeClass('blue-left').addClass('red-left');53 $('.blue-box').removeClass('blue-box').addClass('red-box');54 /* 红变黄 */55 $('.yellow').removeClass('yellow').addClass('red');56 $('.yellow-y').removeClass('yellow-y').addClass('red-r');57 $('.yellow-none').removeClass('yellow-none').addClass('red-none');58 $('.yellow-left').removeClass('yellow-left').addClass('red-left');59 $('.yellow-box').removeClass('yellow-box').addClass('red-box');60}61function togreen(){62 /*蓝变黄 */63 $('.blue').removeClass('blue').addClass('green');64 $('.blue-b').removeClass('blue-b').addClass('green-g');65 $('.blue-none').removeClass('blue-none').addClass('green-none');66 $('.blue-left').removeClass('blue-left').addClass('green-left');67 $('.blue-box').removeClass('blue-box').addClass('green-box');68 /* 红变黄 */69 $('.red').removeClass('red').addClass('green');70 $('.red-r').removeClass('red-r').addClass('green-g');71 $('.red-none').removeClass('red-none').addClass('green-none');72 $('.red-left').removeClass('red-left').addClass('green-left');73 $('.red-box').removeClass('red-box').addClass('green-box');74 /* 红变黄 */75 $('.yellow').removeClass('yellow').addClass('green');76 $('.yellow-y').removeClass('yellow-y').addClass('green-g');77 $('.yellow-none').removeClass('yellow-none').addClass('green-none');78 $('.yellow-left').removeClass('yellow-left').addClass('green-left');79 $('.yellow-box').removeClass('yellow-box').addClass('green-box');...

Full Screen

Full Screen

main.js

Source:main.js Github

copy

Full Screen

...3 $('#contact-bus').hide();4 $('#contact-bike').hide();5 $('#contact-phone').hide();6 $('#contact-mail').hide();7 $('#contact-carClick').removeClass("active");8 $('#contact-busClick').removeClass("active");9 $('#contact-bikeClick').removeClass("active");10 $('#contact-phoneClick').removeClass("active");11 $('#contact-mailClick').removeClass("active");12 $('#contact-map').show();13 $("#contact-mapClick").addClass("active");14// contact page toogles15$("#contact-carClick").click(function () {16 $('#contact-map').hide();17 $('#contact-bus').hide();18 $('#contact-bike').hide();19 $('#contact-phone').hide();20 $('#contact-mail').hide();21 $('#contact-mapClick').removeClass("active");22 $('#contact-busClick').removeClass("active");23 $('#contact-bikeClick').removeClass("active");24 $('#contact-phoneClick').removeClass("active");25 $('#contact-mailClick').removeClass("active");26 $('#contact-car').show();27 $("#contact-carClick").addClass("active");28});29$("#contact-mapClick").click(function () {30 $('#contact-car').hide();31 $('#contact-bus').hide();32 $('#contact-bike').hide();33 $('#contact-phone').hide();34 $('#contact-mail').hide();35 $('#contact-carClick').removeClass("active");36 $('#contact-busClick').removeClass("active");37 $('#contact-bikeClick').removeClass("active");38 $('#contact-phoneClick').removeClass("active");39 $('#contact-mailClick').removeClass("active");40 $('#contact-map').show();41 $("#contact-mapClick").addClass("active");42});43$("#contact-busClick").click(function () {44 $('#contact-map').hide();45 $('#contact-car').hide();46 $('#contact-bike').hide();47 $('#contact-phone').hide();48 $('#contact-mail').hide();49 $('#contact-mapClick').removeClass("active");50 $('#contact-carClick').removeClass("active");51 $('#contact-bikeClick').removeClass("active");52 $('#contact-phoneClick').removeClass("active");53 $('#contact-mailClick').removeClass("active");54 $('#contact-bus').show();55 $("#contact-busClick").addClass("active");56});57$("#contact-bikeClick").click(function () {58 $('#contact-map').hide();59 $('#contact-car').hide();60 $('#contact-bus').hide();61 $('#contact-phone').hide();62 $('#contact-mail').hide();63 $('#contact-mapClick').removeClass("active");64 $('#contact-carClick').removeClass("active");65 $('#contact-busClick').removeClass("active");66 $('#contact-phoneClick').removeClass("active");67 $('#contact-mailClick').removeClass("active");68 $('#contact-bike').show();69 $("#contact-bikeClick").addClass("active");70});71$("#contact-phoneClick").click(function () {72 $('#contact-map').hide();73 $('#contact-car').hide();74 $('#contact-bus').hide();75 $('#contact-bike').hide();76 $('#contact-mail').hide();77 $('#contact-mapClick').removeClass("active");78 $('#contact-carClick').removeClass("active");79 $('#contact-busClick').removeClass("active");80 $('#contact-bikeClick').removeClass("active");81 $('#contact-mailClick').removeClass("active");82 $('#contact-phone').show();83 $("#contact-phoneClick").addClass("active");84});85$("#contact-mailClick").click(function () {86 $('#contact-map').hide();87 $('#contact-car').hide();88 $('#contact-bus').hide();89 $('#contact-bike').hide();90 $('#contact-phone').hide();91 $('#contact-mapClick').removeClass("active");92 $('#contact-carClick').removeClass("active");93 $('#contact-busClick').removeClass("active");94 $('#contact-bikeClick').removeClass("active");95 $('#contact-phoneClick').removeClass("active");96 $('#contact-mail').show();97 $("#contact-mailClick").addClass("active");...

Full Screen

Full Screen

settings.js

Source:settings.js Github

copy

Full Screen

...4 $(".nav-settings").click(function() {5 $("#right-sidebar").toggleClass("open");6 });7 $(".settings-close").click(function() {8 $("#right-sidebar,#theme-settings").removeClass("open");9 });10 $("#settings-trigger").on("click", function() {11 $("#theme-settings").toggleClass("open");12 });13 //background constants14 var navbar_classes = "navbar-danger navbar-success navbar-warning navbar-dark navbar-light navbar-primary navbar-info navbar-pink";15 var sidebar_classes = "sidebar-light sidebar-dark";16 var $body = $("body");17 //sidebar backgrounds18 $("#sidebar-default-theme").on("click", function() {19 $body.removeClass(sidebar_classes);20 $(".sidebar-bg-options").removeClass("selected");21 $(this).addClass("selected");22 });23 $("#sidebar-dark-theme").on("click", function() {24 $body.removeClass(sidebar_classes);25 $body.addClass("sidebar-dark");26 $(".sidebar-bg-options").removeClass("selected");27 $(this).addClass("selected");28 });29 //Navbar Backgrounds30 $(".tiles.primary").on("click", function() {31 $(".navbar").removeClass(navbar_classes);32 $(".navbar").addClass("navbar-primary");33 $(".tiles").removeClass("selected");34 $(this).addClass("selected");35 });36 $(".tiles.success").on("click", function() {37 $(".navbar").removeClass(navbar_classes);38 $(".navbar").addClass("navbar-success");39 $(".tiles").removeClass("selected");40 $(this).addClass("selected");41 });42 $(".tiles.warning").on("click", function() {43 $(".navbar").removeClass(navbar_classes);44 $(".navbar").addClass("navbar-warning");45 $(".tiles").removeClass("selected");46 $(this).addClass("selected");47 });48 $(".tiles.danger").on("click", function() {49 $(".navbar").removeClass(navbar_classes);50 $(".navbar").addClass("navbar-danger");51 $(".tiles").removeClass("selected");52 $(this).addClass("selected");53 });54 $(".tiles.info").on("click", function() {55 $(".navbar").removeClass(navbar_classes);56 $(".navbar").addClass("navbar-info");57 $(".tiles").removeClass("selected");58 $(this).addClass("selected");59 });60 $(".tiles.dark").on("click", function() {61 $(".navbar").removeClass(navbar_classes);62 $(".navbar").addClass("navbar-dark");63 $(".tiles").removeClass("selected");64 $(this).addClass("selected");65 });66 $(".tiles.default").on("click", function() {67 $(".navbar").removeClass(navbar_classes);68 $(".tiles").removeClass("selected");69 $(this).addClass("selected");70 });71 //Horizontal menu in mobile72 $('[data-toggle="horizontal-menu-toggle"]').on("click", function() {73 $(".horizontal-menu .bottom-navbar").toggleClass("header-toggled");74 });75 // Horizontal menu navigation in mobile menu on click76 var navItemClicked = $('.horizontal-menu .page-navigation >.nav-item');77 navItemClicked.on("click", function(event) {78 if(window.matchMedia('(max-width: 991px)').matches) {79 if(!($(this).hasClass('show-submenu'))) {80 navItemClicked.removeClass('show-submenu');81 }82 $(this).toggleClass('show-submenu');83 } 84 });85 $(window).scroll(function() {86 if(window.matchMedia('(min-width: 992px)').matches) {87 var header = $('.horizontal-menu');88 if ($(window).scrollTop() >= 71) {89 $(header).addClass('fixed-on-scroll');90 } else {91 $(header).removeClass('fixed-on-scroll');92 }93 }94 });95 });...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1const {chromium} = require('playwright');2(async () => {3 const browser = await chromium.launch();4 const context = await browser.newContext();5 const page = await context.newPage();6 await page.click('text=Sign in');7 await page.click('input[name="identifier"]');8 await page.fill('input[name="identifier"]', '

Full Screen

Using AI Code Generation

copy

Full Screen

1import { Page } from '@playwright/test';2export async function removeClass(page: Page, selector: string, className: string) {3 await page.evaluate((selector, className) => {4 document.querySelector(selector).classList.remove(className);5 }, selector, className);6}7import { test } from '@playwright/test';8import { removeClass } from './test';9test('test', async ({ page }) => {10 await removeClass(page, '.navbar__inner', 'navbar__inner--floating');11 const navbar = await page.$('.navbar__inner');12 const navbarClasses = await navbar?.getAttribute('class');13 expect(navbarClasses).not.toContain('navbar__inner--floating');14});

Full Screen

Playwright tutorial

LambdaTest’s Playwright tutorial will give you a broader idea about the Playwright automation framework, its unique features, and use cases with examples to exceed your understanding of Playwright testing. This tutorial will give A to Z guidance, from installing the Playwright framework to some best practices and advanced concepts.

Chapters:

  1. What is Playwright : Playwright is comparatively new but has gained good popularity. Get to know some history of the Playwright with some interesting facts connected with it.
  2. How To Install Playwright : Learn in detail about what basic configuration and dependencies are required for installing Playwright and run a test. Get a step-by-step direction for installing the Playwright automation framework.
  3. Playwright Futuristic Features: Launched in 2020, Playwright gained huge popularity quickly because of some obliging features such as Playwright Test Generator and Inspector, Playwright Reporter, Playwright auto-waiting mechanism and etc. Read up on those features to master Playwright testing.
  4. What is Component Testing: Component testing in Playwright is a unique feature that allows a tester to test a single component of a web application without integrating them with other elements. Learn how to perform Component testing on the Playwright automation framework.
  5. Inputs And Buttons In Playwright: Every website has Input boxes and buttons; learn about testing inputs and buttons with different scenarios and examples.
  6. Functions and Selectors in Playwright: Learn how to launch the Chromium browser with Playwright. Also, gain a better understanding of some important functions like “BrowserContext,” which allows you to run multiple browser sessions, and “newPage” which interacts with a page.
  7. Handling Alerts and Dropdowns in Playwright : Playwright interact with different types of alerts and pop-ups, such as simple, confirmation, and prompt, and different types of dropdowns, such as single selector and multi-selector get your hands-on with handling alerts and dropdown in Playright testing.
  8. Playwright vs Puppeteer: Get to know about the difference between two testing frameworks and how they are different than one another, which browsers they support, and what features they provide.
  9. Run Playwright Tests on LambdaTest: Playwright testing with LambdaTest leverages test performance to the utmost. You can run multiple Playwright tests in Parallel with the LammbdaTest test cloud. Get a step-by-step guide to run your Playwright test on the LambdaTest platform.
  10. Playwright Python Tutorial: Playwright automation framework support all major languages such as Python, JavaScript, TypeScript, .NET and etc. However, there are various advantages to Python end-to-end testing with Playwright because of its versatile utility. Get the hang of Playwright python testing with this chapter.
  11. Playwright End To End Testing Tutorial: Get your hands on with Playwright end-to-end testing and learn to use some exciting features such as TraceViewer, Debugging, Networking, Component testing, Visual testing, and many more.
  12. Playwright Video Tutorial: Watch the video tutorials on Playwright testing from experts and get a consecutive in-depth explanation of Playwright automation testing.

Run Playwright Internal automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful