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()

link|improve this question

I make the assumption that the .change() event does not work for you here? – Mark Schultheiss Jan 13 '10 at 20:23
@Mark : When I set the value of elements by doing $('#foo').val('someValue') the .change() event does not get triggered. It only appears to be triggered when the value is changed by the user on the GUI/Browser. – 7wp Jan 13 '10 at 20:28
$('#foo').val('someValue').trigger('change'); might be of use to chain the trigger in there then... – Mark Schultheiss Jan 13 '10 at 20:36
@Mark: Since I need to do this particular processing everywhere the first time I store a value into an element, I didn't want to have to add that extra .trigger() code to every single place I use .val(). Also if I use .trigger() then that will inadvertently trigger a change event that I don't want to run, which is intended to process for change events from the GUI not the code itself. Overriding .val() the way that CMS posted is exactly what I need to do :-) – 7wp Jan 14 '10 at 21:20
feedback

4 Answers

up vote 27 down vote accepted

You can store a reference to the original val function, then override it and do your processing, and later invoke it with call, to use the right context:

(function ($) {
  var originalVal = $.fn.val;
  $.fn.val = function(value) {
    if (typeof value != 'undefined') {
      // setter invoked, do processing
    }
    return originalVal.call(this, value);
  };
})(jQuery);

Note that you can distinguish between a getter call $(selector).val(); and a setter call $(selector).val('new value'); just by checking if the value argument is undefined or not.

link|improve this answer
Thank you, much appreciated. – 7wp Jan 13 '10 at 20:31
This will not work (at least not in jQuery 1.7). Original jQuery function relies on arguments count, so it will consider the original val() method call always a setter. To fix this, replace "return originalVal.call(this, value);" with "return originalVal.apply(this, arguments);" – dkl Feb 21 at 13:07
feedback

If I am understanding you right, something like this should do the trick just fine:

jQuery.fn.val = function (new_val) {
    alert("You set a val! How wonderful!");
    this.value = new_val;
};

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.

link|improve this answer
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

link|improve this answer
Thanks Roman I already knew that, but you are kind of doing some self promotion here for your site. It would be more useful if you would at least also paste your full answer into stack overflow. That way if your site ever disappears from the internet, your answer would still be intact on this site for people to see. That would be a lot more helpful Roman. Thanks for your effort though. – 7wp Jan 23 at 17:00
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:

    (function ($) {
       var originalVal = $.fn.val;
       $.fn.val = function(value) {
          if ($(this).is(':checkbox')) {
            return $(this).is(':checked');
          };
          return originalVal.call(this, value);
        };
     })(jQuery);

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.

link|improve this answer
I'm sorry, I don't understand your answer. I was asking about how to override .val() not how to implement .val() for check-boxes. – 7wp Jul 28 '10 at 20:19
I guess I should remove my comment. I was asking a question myself too, not really answering yours. – Florin Jul 28 '10 at 20:41
oh okay that makes more sense now. Then I suggest posting a new question so that people can attempt to answer it. Stack overflow does not work well in a discussion format. – 7wp Jul 29 '10 at 16:43
feedback

Your Answer

 
or
required, but never shown

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