Skip to content

Instantly share code, notes, and snippets.

@varnie
Created September 9, 2011 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save varnie/1206060 to your computer and use it in GitHub Desktop.
Save varnie/1206060 to your computer and use it in GitHub Desktop.
an example of changing a style of td using embedded js
<html>
<head>
<title>change color using embedded javascript</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<style>
table .c { color: red }
.a.c {color: green}
</style>
</head>
<body>
<table id="t">
<tr>
<td class="c" onmouseover="this.className='c'" onmouseout="this.className='a c'">Текст</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment