基本的に私は2つの入力を持っています:
<input type="text" style="height: 30px;" class="input-xlarge" placeholder="Username" name="username" id="username" required><br /><br />
<input type="password" style="height: 30px;" class="input-xlarge" placeholder="Password" name="password" id="password" required><br /><br />
そして基本的に、
これらの両方の入力の値をチェックし、それらを上記の値にチェックして(後でデータベースに、しかし今はチェック目的で)、新しいページにフェードインしたい..
どうすればこれを行うことができますか?
私はそれを始めました..:
$(function() {
$("#submit").click(function() {
//do check
});
});