On this page the two on/off icons toggle between showing/hiding two rows in a table.
The jquery mechanism to keep track if a row status is shown is to check if the clickable text is "show" or "hide":
if ($(source).html() == "show") {
$(source).html("hide");
viewContainer.show();
}
else {
$(source).html("show");
viewContainer.hide();
}
I get that this should work fine for regular <a href="...">show</a> links, where there is actual "show" or "hide" text to check for and change, but it also works on <img> tags that do not have any text that could alternate between "hide" and "show".
Why does this work?
What I really want to do is toggle the IMG ALT text together with the rows showing and hiding. Any clues as to how this can be done?
(Incidentally I tried chucking the code into http://jsfiddle.net/2Jj2w/2/, but it doesn't work there. Any ideas why?)
===== EDIT =======
Thanks to everyone who helped!
End result toggles the IMG ALT property and keeps check on show/hide status, and IMG TITLE tags are toggled as well.
Proper jquery "prop" used instead of "attr".
Placekittens implemented.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js' type='text/javascript'><!--mce:0--></script>
<script type="text/javascript">
function toggleShowHide(id, source) {
viewContainer = $(id);
if ($(source).prop('alt') == "hidden") {
viewContainer.show();
$(source).prop('title', "Hide details");
$(source).prop('alt', "shown");
}
else {
$(source).prop('alt', "hidden");
viewContainer.hide();
$(source).prop('title', "Show details");
}
}</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<a href="javascript:toggleShowHide('#row1', '#toggle_row1')" ><img src="http://placekitten.com/40/40" id="toggle_row1" alt="hide" title="Hide details" /></a> <a href="javascript:toggleShowHide('#row2', '#toggle_row2')" ><img src="http://placekitten.com/40/40" id="toggle_row2" alt="hide" title="Hide details" /></a>
<table border="1" width="200">
<tbody id="row1">
<tr>
<td>ROW1</td>
</tr>
</tbody>
<tbody id="row2">
<tr>
<td>ROW2</td>
</tr>
</tbody>
</table>
</body>
</html>