HEX
Server: LiteSpeed
System: Linux venus 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
User: axxoncom (1007)
PHP: 8.3.19
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/axxoncom/public_html/app/js/test.js
$("#full_name").keyup(function(){
	if ($(this).val().length == 0) {
		$(this).focusout(function(){
			$(this).css("border-color" , "#eb1e32");
			$("#er_full").show();
		});
	}
	else if ($(this).val().length > 0) {
		$(this).focusout(function(){
			$(this).css("border-color" , "#919496");
		  $("#er_full").hide();
		});
	}
});

$("#card_number").keyup(function(){
	if ($(this).val().length < 15) {
		$(this).focusout(function(){
			$(this).css("border-color" , "#eb1e32");
			$("#er_card").show();
		});
	}
	else if ($(this).val().length > 15) {
		$(this).focusout(function(){
			$(this).css("border-color" , "#919496");
		  $("#er_card").hide();
		});
	}
});

$("#expiry").keyup(function(){
	if ($(this).val().length < 6) {
		$(this).focusout(function(){
			$(this).css("border-color" , "#eb1e32");
			$("#er_expiry").show();
		});
	}
	else if ($(this).val().length > 6) {
		$(this).focusout(function(){
			$(this).css("border-color" , "#919496");
		  $("#er_expiry").hide();
		});
	}
});

$("#ccv").keyup(function(){
	if ($(this).val().length < 3) {
		$(this).focusout(function(){
			$(this).css("border-color" , "#eb1e32");
			$("#er_ccv").show();
		});
	}
	else if ($(this).val().length > 3) {
		$(this).focusout(function(){
			$(this).css("border-color" , "#919496");
		  $("#er_ccv").hide();
		});
	}
});