playaz Posted July 21, 2006 Share Posted July 21, 2006 Hi guys,My client keeps making variations to his demands.. now I have a similar problem to my earlier one.I want to show or hide a <tr> row in a table depending on what the user selects, if the user selects options a,b or c then I want the <tr> with the id="one" to be shown & I want the <tr> with the id="two" to be hidden.If the user selects d,e I want it to do the exact opposite, hide the <tr id="one"> while showing the <tr id="two".How can this be done... i am pulling my hair out with this javascript :(Can anyone help... my earlier thread may also be of use as this is very similar.http://www.phpfreaks.com/forums/index.php/topic,100859.0.html Link to comment https://forums.phpfreaks.com/topic/15238-showhide-row-depending-on-user-selection-from-a-drop-down-menu/ Share on other sites More sharing options...
nogray Posted July 21, 2006 Share Posted July 21, 2006 just use the same code I posted there, and instead of the div, make it a tr[code]<tr id="one" style="display:none;"><td>Hidden Text</td></tr>[/code] Link to comment https://forums.phpfreaks.com/topic/15238-showhide-row-depending-on-user-selection-from-a-drop-down-menu/#findComment-61718 Share on other sites More sharing options...
gluck Posted July 21, 2006 Share Posted July 21, 2006 use the style attribute to solve your issue. Link to comment https://forums.phpfreaks.com/topic/15238-showhide-row-depending-on-user-selection-from-a-drop-down-menu/#findComment-61864 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.