ericnet
Programmer
- Mar 29, 2006
- 106
Hello,
Is there a way to put the current value of a hidden field in this link (where X is) when user clicks on the link?
Thanks
Is there a way to put the current value of a hidden field in this link (where X is) when user clicks on the link?
Code:
<a id="my_link" href="details_page.htm?[b]Page_point=X[/b]">Go to details page</a>
Code:
<html>
<head>
<title>Test Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form id="js_test">
<input type="hidden" id="point">
<a id="my_link" href="details_page.htm?[b]Page_point=hidden field value[/b]">Go to details page</a>
</form>
</body>
</html>
Thanks