Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i disable any input and select with this code:

 var elements = ['#lbl1' ,'#lbl2','#lbl3','#lbl4','#lbl5','#lbl6','#lbl7'];
 jQuery.each(elements, function(element) {
     $(elements[element]).attr('disabled', true);   
 });

now, i want to if user clicking on the disabled tags alert for user:

var elements = ['#lbl1' ,'#lbl2','#lbl3','#lbl4','#lbl5','#lbl6','#lbl7'];
 jQuery.each(elements, function(element) {
   $(elements[element]).click(function{
   if ( $(elements[element]).attr() == 'disabled')  alert('DISABLED');  
   });
 });
share|improve this question

3 Answers

You are missing the open/close parenthesis on the click function:

   $(elements[element]).click(function() {

Why not combine the two functions?

var elements = ['#lbl1' ,'#lbl2','#lbl3','#lbl4','#lbl5','#lbl6','#lbl7'];
 jQuery.each(elements, function(element) {
     $(elements[element]).attr('disabled', true).click(function(){
        alert('DISABLED');
     });
 });

Because you are chaining the bind-to-click-function onto the end of the set-attribute function you do not need to run the each loop multiple times.

share|improve this answer
You are setting all his elements to disabled instead of checking if it's disabled – wirey Oct 8 '12 at 15:57
1  
He is doing that in the first loop. In the second loop they should all be disabled. – Richard Parnaby-King Oct 8 '12 at 15:59
nvm.. maybe that's what he wants.. I'm not even sure – wirey Oct 8 '12 at 15:59

This would be SO much easier if you put a class on all the elements you want to disable. You can then turn this into a one-liner.

$(".disabled-element").prop("disabled", true);

To check if the label is disabled you would then also not need a loop:

$(".disabled-element").click(function() {
    if ($(this).prop("disabled")) {
        alert("disabled");
    }
});

Note though that disabled form elements will not raise a click event in most browsers, labels should be fine though.

share|improve this answer
thanks, and how to check element attribute is disabled? – mahdi Oct 8 '12 at 15:58
@mahdi check my update. – Rory McCrossan Oct 8 '12 at 15:59
this code not work for me: $('[id^="lbl"]').prop("disabled", true); $('[id^="lbl"]').click(function() { if ($(this).prop("disabled")) { alert("disabled"); } }); – mahdi Oct 8 '12 at 16:12

I don't think mouse events like click will work for Disabled Elements.

If you want the code , it can be written this way... But it won't fire on disabled elements.

Check for true instead of disabled..

  $(function() {
    $('[id^="lbl"]').attr('disabled', true);

    $('[id^="lbl"]').on('click', function(){
        if( $(this).attr('disabled') === true){
              alert('DISABLED');
          }
    });
  });

You do not need to assign the click event inside of $.each loop..

You can directly assign the event by using the id^=lbl , Which check for all elements whose id start with lbl .

share|improve this answer
i'm using jquery-1.8.2 but .prop property not working in my code – mahdi Oct 8 '12 at 16:41
Try with attr() – Sushanth -- Oct 8 '12 at 16:45
Also when the field is disabled,, the click event will not work – Sushanth -- Oct 8 '12 at 16:45
now,$('[id^="lbl"]').on('click', function(){ not work for me, why? – mahdi Oct 8 '12 at 17:38
When a input field is disabled .. Mouse Events do not work on it... – Sushanth -- Oct 8 '12 at 17:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.