![]() Tabbing Through HTML Forms You can enable your visitors to tab through your form fields. To view this example, place your cursor inside the Name text box and press your tab key on your keyboard. You can tab through each text box.
The "tabindex" value determines the
order in which you will tab through the text boxes.
|
![]() by Dr. Kevin Nunley Ways to Use All That FREE Stuff There is a glut of great sounding free stuff on the Net. Tons of gizmos and systems that can help your business (or your professional life) and don't cost a dime. Maybe it's because I grew up in farm country, but I HATE to let anything free go by without finding some use for it. Once software is developed, it is extremely cheap to distribute. Because of that, there is a landslide of free tools you can use to make your web site a cash cow. But how do you use them? Before you use any other free tool, get a free newsletter list manager and use it to the max. My personal favorite is Topica.com. eGroups.com is also outstanding. Any 10 year old can set up a newsletter. And NOTHING pulls customers like an interesting email newsletter going out every week, every two weeks, even every month. Fill your newsletter with articles from free ezinearticles.com. Make your next stop at FreeGuestBooks.com. Their guest books are great, but the free discussion board is even better. A friend put one on her site, wrote a welcome note, then left for a couple of weeks. When she got back, she was surprised to find dozens of conversations going on hotly debating her ideas, with people asking questions and others answering--terrific promotion for her site. The Net can be a bit boring, but I'm not sure all the Flash slide shows we're seeing are the answer (for most of us, they take forever to download). Consider putting sound on your site. Go to free GiveMeTalk.com and record your own "radio show." It can simply be you telling customers and prospects about your products, services, and ideas on how to better use them. About the Author:
|
By Paul Coulter Copyright © 2008-2010
Sponsor Message: |
By Terri Seymour Copyright © 2010
Sponsor Message: |
![]() By William Bontrager When you want a form that can be submitted without requiring the rather prominent submit button, this article shows you how, with several methods:
This article contains step-by-step
instructions with code examples. I think you'll find it easy to follow. <form name="MyForm" method="POST" action="/cgi-bin/script.cgi">
Second step, the JavaScript — <a href="javascript:document.MyForm.submit();"> Click to submit the form </a>
Optional third step — <noscript> <input type="submit" name="Click here"> </noscript>
The above will display the submit
button only when non-JavaScript browsers visit the page. <form name="MyForm" method="POST" action="/cgi-bin/script.cgi"> <input type="checkbox" name="MyCheck" onClick="DoSubmission();"> Check when done with form Second step, the JavaScript — <script type="text/javascript" language="JavaScript"><!-- function DoSubmission() { document.MyForm.submit(); } //--></script>
Put the JavaScript anywhere on your
page, in the HEAD or BODY area, above or below the form. <form name="MyForm" method="POST" action="/cgi-bin/script.cgi"> <input type="hidden" name="ThisPageURL" value=""> <input type="hidden" name="TimeZoneOffset" value=""> </form>
You'll need to add a hidden field
to let your CGI program know the URL of the "thank you" page it should use. <script type="text/javascript" language="JavaScript"><!-- document.MyForm.ThisPageURL.value = document.URL; var x = new Date(); document.MyForm.TimeZoneOffset.value = x.getTimezoneOffset(); document.MyForm.submit(); //--></script>
When the page is loaded, the JavaScript
will automatically fill in the form with the web page's URL and the time
zone offset information from your visitor's computer, and then automatically
submit the form. After processing the form information, the CGI program presents
a "thank you" page. <iframe height="300" width="200" src="WebPageContainingAutomaticForm.html"> </iframe>
Adjust the URL so the web page containing
the automatically submitted form loads into the IFRAME tag. And adjust the
height and width to accommodate the "thank you" page.
|