Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working with validationEngine's onBeforeAjaxFormValidation(form, options).

I would like take the form and do it like this without the id:

$("#contactfor :input").attr("disabled", true);
share|improve this question

2 Answers

If #contactfor is the id of the same form you are using jQuery Validation Engine against. Then, you should be able to do something like this:

form.find(":input").prop("disabled", true);
share|improve this answer
I dont know why, but this way its works $("form :input").attr("disabled", true); – Dinamo Feb 4 at 20:47
1  
@Dinamo, we don't know either if you don't provide more information. Anyways, that's applied to all forms in the page – Alexander Feb 4 at 20:55

Try this

$('#form1').find("INPUT").attr('disabled',true); 
share|improve this answer
i donr know why but this way it works fine $("form :input").attr("disabled", true); – Dinamo Feb 4 at 19:23

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.