ŞizofrenikDev adlı üyeden alıntı

Süresiz Reklam Input Id => "chkNoLimit"
Başlangıç Tarihi Input Id => "txtBeginDate"
BitişTarihi Input Id => "txtEndDate"
Reklam Konumu Select Id => "ddlAdverLocation"
Reklam Kodu Button Id => "btnCreateAdverCode"


$("#chkNoLimit").click(function(){
if($(this).is(':checked')){
$("#txtBeginDate, #txtEndDate").hide();
}else{
$("#txtBeginDate, #txtEndDate").show();
}
});

$("#btnCreateAdverCode").hide();

$("#ddlAdverLocation").change(function(){
if($(this).val().length>0)
$("#btnCreateAdverCode").show();
else
$("#btnCreateAdverCode").hide();
});


hocam ddlAdverLocation divinden seçim yapılmadığında butona disabled özelliği verebilir miyiz ?