File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes HTML, CSS and JavaScript and the fly likes How to create a Tabbed page....Help...Urgent.... Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Practical Unit Testing with TestNG and Mockito this week in the Testing forum!
JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "How to create a Tabbed page....Help...Urgent...." Watch "How to create a Tabbed page....Help...Urgent...." New topic
Author

How to create a Tabbed page....Help...Urgent....

sam patel
Ranch Hand

Joined: Jun 13, 2002
Posts: 103
Hi all,
I would like to know, how to create tabbed pages using html. I wold appreciate if someone can show me a simple example...
Thanks..
sunitha reghu
Ranch Hand

Joined: Dec 12, 2002
Posts: 937
Sam,
Frst u have to get the focus on the frst box. call that body onload( didnt allow me to put js)
i hate when it gave me an error.it really a pin to post html/js script here)
then suppose ur second box has three chars and the thris has four according to that u have write a js like this

function blah1()
{
if (document.form.box1.value.length==2) {
document.form.box2.focus();
}
}
function blah2()
{
if (document.form.box2.value.length==3) {
document.form.box3.focus();
}
}
function blah3()
{
if (document.form.box3.value.length==4) {
document.form.nextfield.focus();
}
}

form name="form"
input name="box1" size="2" onKeyUp="blah1()"
input name="box2" size="3" onkeyup="blah2()"
input name="box3" size="4" onkeyup="blah3()"
form
Hope is this wat u asking....
 
 
subject: How to create a Tabbed page....Help...Urgent....
 
Threads others viewed
Tabbed Pane using awt components..
JSP with tabs
tabbed panes
select text in jtextfield, but only when tabbing
How to have tabbed panes in JSP?
IntelliJ Java IDE