I have tried using both jQuery & Javascript to change the visibility of a page component and it doesn't seem to be working (although I'm not perfect and it could be me too).
I simply have a button that when it is clicked an image should become invisible and another should become visible. I even created a test case of a button that when clicked executes the following in Javascript:
document.getElementById("strike_image_81").visible="false";
In jQuery I have:
$('strike_image_81').hide();
$('strike_image_82').show();
What could I be doing wrong for these components to not respond to this code?