After upgrading to jquery 1.7.2 i noticed that calling the val() operation is no longer working consistently for me.
The following line of code will always work on the older version of jquery the application was using (1.4.4) whereas on jquery 1.7.2 it does not work
var someVal = $("input:hidden[name=Some value withspaces_val]").val();
Any ideas of What is causing this to fail? Thanks
have you tried $(“input:hidden[name=’Some value withspaces_val’]”)