Get value from specific cells

This is a discussion on "Get value from specific cells" within the JavaScript Forum section. This forum, and the thread "Get value from specific cells are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jun 27th, 2007, 09:12
New Member
Join Date: Jun 2007
Location: Malaysia
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Smile Get value from specific cells

Hi! I wish to get the value from a cell that specifically click by a user. I attach the script over here. For example, when i click on the first cell it should return "click 1" and if click on second cell should return "click 2". Anyone can help me? Thanks in advance.

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script type="text/javascript">
var editwindow = undefined;
function getcell(e){
e=window.event;
var tgt = e.target || e.srcElement;
while (tgt && !tgt.cells) {tgt = tgt.parentNode;}
alert(tgt.rowIndex);
alert(document.getElementById("mytable").cells[tgt.rowIndex].innerHTML); //getting specific row
}
</script>
</HEAD>

<BODY>
<p><p>
<TABLE border= '1' >
<TBODY id="mytable" onclick="getcell(event)">
<tr ><td>click 1</td>
<td >click 2</td>
<td >click 3</td>
</tr>
<tr ><td>click 4</td>
<td >click 5</td>
<td >click 6</td>
</tr>
</TABLE>
</BODY>
</HTML>
Reply With Quote

Reply

Tags
dynamic tables

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Loading specific flash movies for specific pages koonkle Flash & Multimedia Forum 3 May 22nd, 2007 17:23
Table Cells magiccupcake Web Page Design 5 Jan 23rd, 2007 01:07
Switching images in cells... Kingcobra220 JavaScript Forum 2 Sep 3rd, 2006 22:33
Table help with borders of cells... andrewsco Web Page Design 2 Jun 21st, 2006 22:10
table cells benbacardi Web Page Design 3 Apr 15th, 2004 15:56


All times are GMT. The time now is 04:42.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43