JavaScript highlight table cell on tab in field - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T23:19:23Zhttp://stackoverflow.com/feeds/question/150606http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/150606/javascript-highlight-table-cell-on-tab-in-field1JavaScript highlight table cell on tab in fieldJason2008-09-29T20:53:17Z2008-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#1506290Answer by roenving for JavaScript highlight table cell on tab in fieldroenving2008-09-29T20:58:26Z2008-09-29T20:58:26Z<p>Possibly:</p>
<pre><code><script type="text/javascript">
//getParent(startElement,"tagName");
function getParent(elm,tN){
var parElm = elm.parentNode;
while(parElm.tagName.toLowerCase() != tN.toLowerCase())
parElm = parElm.parentNode;
return parElm;
}
</script>
<tr><td><input type="..." onfocus="getParent(this,'td').style.backgroundColor='#400';" onblur="getParent(this,'td').style.backgroundColor='';"></td></tr>
</code></pre>
http://stackoverflow.com/questions/150606/javascript-highlight-table-cell-on-tab-in-field/150776#1507764Answer by Parand for JavaScript highlight table cell on tab in fieldParand2008-09-29T21:30:38Z2008-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#1508131Answer by Jason Bunting for JavaScript highlight table cell on tab in fieldJason Bunting2008-09-29T21:35:23Z2008-09-29T21:35:23Z<p>This is the table I tested my code on:</p>
<pre><code><table id="myTable">
<tr>
<td><input type="text" value="hello" /></td>
<td><input type="checkbox" name="foo" value="2" /></td>
<td><input type="button" value="hi" /></td>
</tr>
</table>
</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 < myTableCells.length; cellIndex++) {
var currentTableCell = myTableCells[cellIndex];
var originalBackgroundColor = currentTableCell.style.backgroundColor;
for(var childIndex = 0; childIndex < 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>