vote up 0 vote down star

i have coded a header file which contains a input textbox for search.this header is include in body tag of a jsp page as shown below.

<body>
<include src="header.ssi">
<form>
</form>

onclick of button i header file i am running a javascript function. i need to refer to this textbox in javascript function.

flag

71% accept rate
Why can you not just enclose it in form tags within the header? I see what you are doing here though, but i don't think it's neccessary. – Dominic Bou-Samra Sep 9 at 12:42

2 Answers

vote up 1 vote down

If you can use jQuery then simply use $("#textboxid") to access the textbox

link|flag
vote up 2 vote down

document.getElementById — but it should be in a form

link|flag
but textbox is not in form – sahil garg Sep 9 at 12:44
So? You don't need it to be in a form to use getElementById, that's why I said to use getElementById. Having a text input without a form means it isn't going to work unless JavaScript is available, which is why I said it should be in a form. – David Dorward Sep 9 at 13:07

Your Answer

Get an OpenID
or

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