form <input> types are boring. How can I use JavaScript to spice it up a bit?
-
I have a <form> but I don't want to use the same old borning <input type="text" or "radio" or "button">. What I would like to do is use JavaScript with objects as my buttons. Like a image, or in this case, a letter. Example: (The following form is meant to submit a letter choice to the action page. In the end, the action page needs a variable named "letter_choice" that contains any letter A-Z) <form name="alphabetical" method="post" action="actionpage.cfm"> <a href="javascript:alpha_search('a');">A</a> <a href="javascript:alpha_search('b');">B</a> <a href="javascript:alpha_search('c');">C</a> </form> Being new to JavaScript, I am stuck here. I have created a function named 'alpha_search' that looks like such: function alpha_search(letters) { document.alphabetical.submit(letter); } In conclusion: How would I get this form to submit the letter 'A' to the action page, without using the ugly form buttons.
-
Answer:
Hello Steven You were very nearly there! The code below shows you how to do what you were trying to achieve. Basically there are two items missing from your original script: 1) You need to place a hidden <input> type on your form. This will not show up on your form but will give you somewhere to place the letter value you click on when you submit the form. 2) In the alpha_search function you need to tell the hidden <input> tag its value before submitting the form. The code should be this: <script language="JavaScript" type="text/JavaScript"> function alpha_search(letters) { document.alphabetical.letter.value = letters; document.alphabetical.submit(); } </script> <form name="alphabetical" method="post" action="actionpage.cfm"> <input type="hidden" name="letter" /> <a href="javascript:alpha_search('a');">A</a> <a href="javascript:alpha_search('b');">B</a> <a href="javascript:alpha_search('c');">C</a> </form> If you have any questions on this please ask for clarification and I will do my best to help.
stevenclary-ga at Google Answers Visit the source
Related Q & A:
- How can I use a button to retrieve a phone 'number' from contacts?Best solution by Stack Overflow
- If I have a form, such as an application, how can I fill it out using my computer?Best solution by answers.yahoo.com
- How Can I Use A Picture For My Avatar?Best solution by Yahoo! Answers
- How can I use a VGA cable as an input?Best solution by tomsguide.com
- How can I use to prepaid cards to make a purchase?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.