Is there a way to easily override jQuery's .val() function?
The reason I want to override it is that I want to add some processing each time a value is set for an element. And I don't want to make another custom value setter, such as .myVal()
|
Is there a way to easily override jQuery's .val() function? The reason I want to override it is that I want to add some processing each time a value is set for an element. And I don't want to make another custom value setter, such as .myVal()
| |||||||||
feedback
|
|
You can store a reference to the original
Note that you can distinguish between a getter call | |||
|
feedback
|
|
If I am understanding you right, something like this should do the trick just fine:
Just make sure you include the regular functionality: getting values of selects and so on. Just stick that code after after the regular jQuery library. | |||
|
feedback
|
|
I know the problem is old but just to give a full solution. In order for both the jQuery.val() and the jQuery.val(value) to work after override you need to override it properly and separately. Because when calling jQuery.val() then originalVal.call(this, value); will not work correctly. To do it in a correct way you need to do something like that when getting the value: originalVal.call(this); Here is a site where everything is explained: http://extremedev.blogspot.com/2012/01/override-jqueryval-and-jqueryvalvalue.html Regards, Roman | |||
feedback
|
|
How would you override val() just for 'input:checkbox'? I find that by having val() return 'on' invariably when applied to checkboxes is odd behavior. Most of the time, the checkbox 'value' attribute is never set and the only relevant information is 'checked' or not. $('').val() should verify if the attr 'value' is defined, and if not, return the check status, else return the 'value' value. So I tried this:
My problem I have now, is that I do not know how to determine if the 'value' attribute is set. Using $(this).attr('value') returns 'on' always. Thanks for the help. | |||||||
feedback
|