The trick is to use selectors http://docs.jquery.com/Selectors
<html xmlns="http://www.w3.org/1999/xhtml">So when the user hovers over the table, only the cell with Row 1 Column 1 text gets highlighted. The text has been hardcoded here but can easily be replaced to accept the value from a textbox.
<head >
<title>Search and highlight Border Color on Hover</title>
<script src="http://code.jquery.com/jquery-latest.js"
type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".someClass").hover(
function() {
$("td:contains('Row 1, Column 1')").css("border", "Solid Brown 1px");
},
function() {
$("td:contains('Row 1, Column 1')").css("border", "");
});
});
</script>
</head>
<body>
<form id="form1" >
<table id="tblOuter" class="someClass" style="width:50%">
<tr>
<td>Row 0, Column 0</td>
<td>Row 0, Column 1</td>
<td>Row 0, Column 2</td>
</tr>
<tr>
<td>Row 1, Column 0</td>
<td>Row 1, Column 1</td>
<td>Row 1, Column 2</td>
</tr>
<tr>
<td>Row 2, Column 0</td>
<td>Row 2, Column 1</td>
<td>Row 2, Column 2</td>
</tr>
</table>
</form>
</body>
</html>
Tweet
2 comments:
WAY TO NOT POST A DEMO OR AN EXAMPLE I WILL USE THE MAGIC POWER OF IMAGINATION
Thanks for your comment. A link to the demo has been added
Post a Comment