Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript thread: Row Index from tbody?


Message #1 by "Peter Crane" <bluemight2000@y...> on Tue, 15 May 2001 09:12:07
Excellent,  this is great, thank you for the demo.  I didnt know 
parentElement existed, now that I do, I can go back and change some of the 
other messy coding I did.

Thanks again...Peter


> Oops. The onclick event should read
>    onclick="btnHandler(this);"
> 
> 
> Try
> 
> function btnHandler(o) {
> 		alert("You clicked the button in row" + 
> (o.parentElement.parentElement.rowIndex + 1));
> 	}
> 
> 

  Return to Index