Vinsanity Posted January 17, 2007 Share Posted January 17, 2007 can anyone help me on this problem?i need to allow user to click on the row with highlighted and it will show the details of it... can i achieve it without the checkbox or the radio button... initially the page will onli show the key field of the table and then when user choose on one and click on it then the details page will come out... Quote Link to comment https://forums.phpfreaks.com/topic/34530-help/ Share on other sites More sharing options...
Braclayrab Posted January 17, 2007 Share Posted January 17, 2007 I believe every element should have an onClick event handler, be sure to test it in a couple of browsers at least tho.<div onClick="myJavascriptFunction()">Click me!!</div> Quote Link to comment https://forums.phpfreaks.com/topic/34530-help/#findComment-162665 Share on other sites More sharing options...
Vinsanity Posted January 17, 2007 Author Share Posted January 17, 2007 i would like to know how to identify the value of it and need to display it details... becos i hav a lot of data in my table and need to know which details to display... Quote Link to comment https://forums.phpfreaks.com/topic/34530-help/#findComment-162682 Share on other sites More sharing options...
Braclayrab Posted January 17, 2007 Share Posted January 17, 2007 give the Div an id like so:<div id="myDiv1">my div contents</div>Then you can retrieve the element from javascript with the following:elemMyDiv = document.getElementById('myDiv1');You can then get the innerHTML or outerHTML of the element:szMyContents = elemMyDiv.innerHTML;Search google for 'document object model' if you want to learn more. Quote Link to comment https://forums.phpfreaks.com/topic/34530-help/#findComment-162697 Share on other sites More sharing options...
Braclayrab Posted January 17, 2007 Share Posted January 17, 2007 Ah, it just occurred to me that you could simply pass the element in the function that calls it:<div onClick="myFunction(this);"></div> Quote Link to comment https://forums.phpfreaks.com/topic/34530-help/#findComment-162700 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.