maxudaskin Posted January 23, 2008 Share Posted January 23, 2008 <td width="33%" height="20" align="center" valign="middle" class="cursor_link" style="background:url(../images/admin_tab_L.jpg)" onclick="newapps.style.class='uncollapsedtable'" onclick="filedflights.style.class='collapsedtable'" onclick="messages.style.class='collapsedtable'" onMouseOver="this.style.background='url(../images/admin_tab_L_hvr.jpg)'" onMouseOut="this.style.background='url(../images/admin_tab_L.jpg)'"> It does not seem to be working... any ideas? CSS: .collapsedtable{ visibility:collapse; } .uncollapsedtable{ visibility:visible; } FULL SCRIPT: <table onload="MM_preloadImages('../images/admin_tab_C_hvr.jpg','../images/admin_tab_L_hvr.jpg','../images/admin_tab_R_hvr.jpg','../images/admin_tab_C.jpg','../images/admin_tab_R.jpg','../images/admin_tab_L.jpg')" width="98%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="33%" height="20" align="center" valign="middle" class="cursor_link" style="background:url(../images/admin_tab_L.jpg)" onclick="newapps.style.class='uncollapsedtable'" onclick="filedflights.style.class='collapsedtable'" onclick="messages.style.class='collapsedtable'" onMouseOver="this.style.background='url(../images/admin_tab_L_hvr.jpg)'" onMouseOut="this.style.background='url(../images/admin_tab_L.jpg)'"><div class="middle_vallign" style="color:#FFFFFF; height:100%; vertical-align:middle;">New Applicants</div></td> <td width="33%" height="20" align="center" valign="middle" class="cursor_link" style="background:url(../images/admin_tab_C.jpg)" onMouseOver="this.style.background='url(../images/admin_tab_C_hvr.jpg)'" onMouseOut="this.style.background='url(../images/admin_tab_C.jpg)'"><div class="middle_vallign" style="color:#FFFFFF; height:100%; vertical-align:middle;">Filed Flights</div></td> <td width="34%" height="20" align="center" valign="middle" class="cursor_link" style="background:right url(../images/admin_tab_R.jpg)" onMouseOver="this.style.background='right url(../images/admin_tab_R_hvr.jpg)'" onMouseOut="this.style.background='right url(../images/admin_tab_R.jpg)'"><div class="middle_vallign" style="color:#FFFFFF; height:100%; vertical-align:middle;">Messages</div></td> </tr> <tr> <td colspan="3" bgcolor="#333355"><table width="100%" border="0" cellpadding="0" cellspacing="1" id="newapps"> <tr> <td bgcolor="#FFFFFF"> </td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="1" id="filedflights"> <tr> <td bgcolor="#FFFFFF"><br /></td> </tr> </table><table width="100%" border="0" cellpadding="0" cellspacing="1" id="messages"> <tr> <td bgcolor="#FFFFFF"><br /></td> </tr> </table></td> </tr> </table> Link to comment https://forums.phpfreaks.com/topic/87318-onclick/ Share on other sites More sharing options...
phpQuestioner Posted January 23, 2008 Share Posted January 23, 2008 <style type="text/css"> .collapsedtable { visibility:collapse; } .uncollapsedtable{ visibility:visible; } </style> <script language="javascript"> function show(num1,num2,num3) { document.getElementById(num1).className="uncollapsedtable"; document.getElementById(num2).className="uncollapsedtable"; document.getElementById(num3).className="uncollapsedtable"; } </script> <table onload="MM_preloadImages('../images/admin_tab_C_hvr.jpg','../images/admin_tab_L_hvr.jpg','../images/admin_tab_R_hvr.jpg','../images/admin_tab_C.jpg','../images/admin_tab_R.jpg','../images/admin_tab_L.jpg')" width="98%" cellspacing="0" cellpadding="0"> <tr> <td width="33%" height="20" align="center" valign="middle" class="cursor_link" style="background:url(../images/admin_tab_L.jpg)" onclick="show('newapps','filedflights','messages')" onMouseOver="this.style.background='url(../images/admin_tab_L_hvr.jpg)'" onMouseOut="this.style.background='url(../images/admin_tab_L.jpg)'"><div class="middle_vallign" style="color:#FFFFFF; height:100%; vertical-align:middle;">New Applicants</div></td> <td width="33%" height="20" align="center" valign="middle" class="cursor_link" style="background:url(../images/admin_tab_C.jpg)" onMouseOver="this.style.background='url(../images/admin_tab_C_hvr.jpg)'" onMouseOut="this.style.background='url(../images/admin_tab_C.jpg)'"><div class="middle_vallign" style="color:#FFFFFF; height:100%; vertical-align:middle;">Filed Flights</div></td> <td width="34%" height="20" align="center" valign="middle" class="cursor_link" style="background:right url(../images/admin_tab_R.jpg)" onMouseOver="this.style.background='right url(../images/admin_tab_R_hvr.jpg)'" onMouseOut="this.style.background='right url(../images/admin_tab_R.jpg)'"><div class="middle_vallign" style="color:#FFFFFF; height:100%; vertical-align:middle;">Messages</div></td> </tr> <tr> <td colspan="3" bgcolor="#333355"><table width="100%" border="0" cellpadding="0" cellspacing="1" id="newapps" class="collapsedtable"> <tr> <td bgcolor="#FFFFFF"> </td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="1" id="filedflights" class="collapsedtable"> <tr> <td bgcolor="#FFFFFF"><br /></td> </tr> </table><table width="100%" border="0" cellpadding="0" cellspacing="1" id="messages" class="collapsedtable"> <tr> <td bgcolor="#FFFFFF"><br /></td> </tr> </table></td> </tr> </table> Link to comment https://forums.phpfreaks.com/topic/87318-onclick/#findComment-446694 Share on other sites More sharing options...
smiley_kool Posted January 23, 2008 Share Posted January 23, 2008 hi .. i'm new to this forum. can u tell me how to post the new topic inthis forum.. and i have a doubt.. can u tell me how to give border color to the textbox using html n css..its very urgent.. Link to comment https://forums.phpfreaks.com/topic/87318-onclick/#findComment-446770 Share on other sites More sharing options...
phpQuestioner Posted January 23, 2008 Share Posted January 23, 2008 hi .. i'm new to this forum. can u tell me how to post the new topic inthis forum.. and i have a doubt.. can u tell me how to give border color to the textbox using html n css..its very urgent.. reference this thread for the answer: http://www.phpfreaks.com/forums/index.php/topic,178495.0.html Link to comment https://forums.phpfreaks.com/topic/87318-onclick/#findComment-446787 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.