This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>js validate</title> | |
</head> | |
<body> | |
<form id="loginform" method="post" action="#" onsubmit="return validateFields(this)"> | |
<div> | |
<label class="labelarea">Customer Num:</label> | |
<input id="custninputID" type="text" name="custninput" class="inputarea" onblur="validateFields(this)" data-validate='{"pattern":"/^\\d{4}$/"}' data-error='{"empty":"Please enter something in the customer number input.", "pattern":"Customer number must be 4 digits!"}' /><br /> | |
<span id="custninputID-info"></span><br /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Xbox 360 Gamercard */ | |
.gamercard * { | |
padding: 0; | |
margin: 0; | |
} | |
.gamerCard { | |
/* float: left; */ | |
background: #fefffe url('imgs/layout_news_body.gif') no-repeat right top; | |
border: 1px solid #b2b2b2; |