Hi, I am using jquery UI button widget and I need to change its state.
I know that I can enable or disable it but I need more states like checked or unchecked (like a checkbox but applied to links). Is there any way to do it?
Hi I like the validate plugin, but it only works with values defined on load, not dynamic values. I'd like to be able to compare field values. For example, if I got 2 fields: #start_value and #end_value and I want to check the end_value is bigger than start_value, should be something like this: $("#myform").validate({ rules: { end_value: { required: true, min: '#start_value' } } });