Elimde aşağıdaki kod var ancak çalışmıyor.Yani form doldurulduğu zaman butonun aktifleşmesi gerekiyor.(Çalışan örnek : http://jsfiddle.net/qKG5F/641/)


<script></script>

Contact Form


Please fill in the form to send message to the site administrator


























JavaScript kodu:


(function() { // fiddle
$("form > input").keyup(function() {
var empty = false;
$("form > input").each(function() {
if ($(this).val() == "") {
empty = true;
}
});

if (empty) {
$("#submit").attr("disabled", "disabled");
} else {
$("#submit").removeAttr("disabled");
}
});
})();