I would like to replace part of the input value, to be exact posted value in the link. Value of yy parameter has to be replaced with (yyNewval).
yyNewval = '3xxxx';
returnlink = $("input[name=return]");
returnlink.val;
will give you output of:
i would like to change the highlighted (2xxxx) so everything after (yy=) . I know how to replace entire input value, but will be more handy to alter only last parameter.
THX for your help in advance