I am trying to generate a link that has the href
attribute as follows:
app\process?val=12000
The catch is that the value for the val
parameter (in this case 12000
) needs to be derived from a textbox on the page.
I am aware that I can retrieve the value using $(#textbox).value()
, but I also need to update the link whenever the value in the textbox changes.