JavaScript highlight table cell on tab in field - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:19:23Z http://stackoverflow.com/feeds/question/150606 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/150606/javascript-highlight-table-cell-on-tab-in-field 1 JavaScript highlight table cell on tab in field Jason 2008-09-29T20:53:17Z 2008-09-29T22:07:16Z <p>Hi All,</p> <p>I have a website laid out in tables. (a long mortgage form)</p> <p>in each table cell is one HTML object. (text box, radio buttons, etc)</p> <p>What can I do so when each table cell is "tabbed" into it highlights the cell with a very light red (not to be obtrusive, but tell the user where they are)?</p> http://stackoverflow.com/questions/150606/javascript-highlight-table-cell-on-tab-in-field/150629#150629 0 Answer by roenving for JavaScript highlight table cell on tab in field roenving 2008-09-29T20:58:26Z 2008-09-29T20:58:26Z <p>Possibly:</p> <pre><code>&lt;script type="text/javascript"&gt; //getParent(startElement,"tagName"); function getParent(elm,tN){ var parElm = elm.parentNode; while(parElm.tagName.toLowerCase() != tN.toLowerCase()) parElm = parElm.parentNode; return parElm; } &lt;/script&gt; &lt;tr&gt;&lt;td&gt;&lt;input type="..." onfocus="getParent(this,'td').style.backgroundColor='#400';" onblur="getParent(this,'td').style.backgroundColor='';"&gt;&lt;/td&gt;&lt;/tr&gt; </code></pre> http://stackoverflow.com/questions/150606/javascript-highlight-table-cell-on-tab-in-field/150776#150776 4 Answer by Parand for JavaScript highlight table cell on tab in field Parand 2008-09-29T21:30:38Z 2008-09-29T21:30:38Z <p>Use jQuery to make your life easier, and you can do something like this:</p> <pre><code>$('#mytableid input').focus( function() { $(this).addClass('highlight'); }).blur( function() { $(this).removeClass('highlight'); }); </code></pre> <p>This is basically saying when any input element in your table is under focus add the "highlight" class to it, and once it loses focus remove the class.</p> <p>Setup your css as:</p> <pre><code>input.highlight { background-color: red; } </code></pre> <p>and you should be set.</p> http://stackoverflow.com/questions/150606/javascript-highlight-table-cell-on-tab-in-field/150813#150813 1 Answer by Jason Bunting for JavaScript highlight table cell on tab in field Jason Bunting 2008-09-29T21:35:23Z 2008-09-29T21:35:23Z <p>This is the table I tested my code on:</p> <pre><code>&lt;table id="myTable"&gt; &lt;tr&gt; &lt;td&gt;&lt;input type="text" value="hello" /&gt;&lt;/td&gt; &lt;td&gt;&lt;input type="checkbox" name="foo" value="2" /&gt;&lt;/td&gt; &lt;td&gt;&lt;input type="button" value="hi" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>Here is the code that worked:</p> <pre><code>// here is a cross-browser compatible way of connecting // handlers to events, in case you don't have one function attachEventHandler(element, eventToHandle, eventHandler) { if(element.attachEvent) { element.attachEvent(eventToHandle, eventHandler); } else if(element.addEventListener) { element.addEventListener(eventToHandle.replace("on", ""), eventHandler, false); } else { element[eventToHandle] = eventHandler; } } attachEventHandler(window, "onload", function() { var myTable = document.getElementById("myTable"); var myTableCells = myTable.getElementsByTagName("td"); for(var cellIndex = 0; cellIndex &lt; myTableCells.length; cellIndex++) { var currentTableCell = myTableCells[cellIndex]; var originalBackgroundColor = currentTableCell.style.backgroundColor; for(var childIndex = 0; childIndex &lt; currentTableCell.childNodes.length; childIndex++) { var currentChildNode = currentTableCell.childNodes[childIndex]; attachEventHandler(currentChildNode, "onfocus", function(e) { (e.srcElement || e.target).parentNode.style.backgroundColor = "red"; }); attachEventHandler(currentChildNode, "onblur", function(e) { (e.srcElement || e.target).parentNode.style.backgroundColor = originalBackgroundColor; }); } } }); </code></pre> <p>There are probably things here you could clean up, but I whipped this together quickly. This works even if there are multiple things in each cell.</p> <p>This would be much easier, it should go without saying, if you used a library to assist you in this work - <a href="http://jquery.com" rel="nofollow"><strong>jQuery</strong></a> and <a href="http://MochiKit.com" rel="nofollow"><strong>MochiKit</strong></a> are the two I favor, though there are others that would work just as well.</p> <p><hr /></p> <p>Between the time I started writing this answer and the time I posted it, someone posted code that shows how you would do something like this in jQuery - as you can see, much shorter! Although I love libraries, I know some people either can't or will not use a library - in those cases my code should do the job.</p>