|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
SlickEdit: Code in over 40 languages across 7 platforms. SlickEdit’s unmatched power, speed, and flexibility allows even the most accomplished developers to write better code faster. Download a free trial today! |
|
#1
|
|||
|
|||
|
Creating and navigating tabbed pane in javascript
Hi All,
i am new to this forum. I want to create a multirow tabbed pane on my jsp page. i want to manage their postion accordingly when tab on upper page has been clicked. functionality like... right click my computer -> properties -> system properties this window has tabbed pane.i wnat this feature to impelement in my jsp page. but one more problem is that my tabs count will be dynamic. Neeraj |
|
#2
|
||||
|
||||
|
one way i know to set up the tab(iture) if you will, lol, is you can use css....
Code:
<STYLE TYPE="text/css">
.image1 {left:[number of px to the left]px;top:[number of px from the top]px;}
</STYLE>
<IMG ID="1stimage" NAME="1stimage" CLASS="image1" SRC"..."></IMG>
to change the image use...
<SCRIPT>
var image_1=new Image();
var image_1.src="images src";
var image_1_over=new Image();
var image_1_over.src="image1s over src";
use this to change it...
window.document.1stimage.src=image_1_over.src;
----------------------------------------------------------------- hope this helped, if it does or doesnt please post back colton22 |
![]() |
| Viewing: Dev Articles Community Forums > Programming > JavaScript Development > Creating and navigating tabbed pane in javascript |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|