Hi,
I have 2 radio buttons and a text field. Depending on the entered text and the SELECTED BUTTON, I will perform a certain action. My question is how would I refer to my radio buttons and the text field in another file..
<form id="quicksearch" name="quicksearch" action="/scripts/searchRouter.cfm" method="post">
<label for="quicksearchBox">Search:</label> <input class="styledinput" tabindex="1" accesskey="S" type="text" name="q" id="quicksearchBox" size="9" /><input class="styledinput" tabindex="2" type="submit" value="Go" id="quicksearchButton" /><br /><br />
<p><input type="radio" accesskey="J" name="selectedSearch" checked="checked" value="J"/> Vanier College</p>
<p><input type="radio" accesskey="C" name="selectedSearch" value="C" /> Abbot University</p>
</form>
I have 2 radio buttons and a text field. Depending on the entered text and the SELECTED BUTTON, I will perform a certain action. My question is how would I refer to my radio buttons and the text field in another file..
<form id="quicksearch" name="quicksearch" action="/scripts/searchRouter.cfm" method="post">
<label for="quicksearchBox">Search:</label> <input class="styledinput" tabindex="1" accesskey="S" type="text" name="q" id="quicksearchBox" size="9" /><input class="styledinput" tabindex="2" type="submit" value="Go" id="quicksearchButton" /><br /><br />
<p><input type="radio" accesskey="J" name="selectedSearch" checked="checked" value="J"/> Vanier College</p>
<p><input type="radio" accesskey="C" name="selectedSearch" value="C" /> Abbot University</p>
</form>