Is it possible to take the effect of this Javascript and have it directly in the CSS instead?
- Matt
"If I must boast, I will boast of the things that show my weakness
JavaScript:
<script type="text/javascript">
$("[src*=plus]").live("click", function () {
$(this).closest("tr").after("<tr><td></td><td colspan = '999'>" + $(this).next().html() + "</td></tr>")
$(this).attr("src", "/Content/Images/minus.png");
});
</script>
- Matt
"If I must boast, I will boast of the things that show my weakness