I'm trying to show a div when someone clicks on the flash button pertaining to certain div. This is the javascript function I'm trying to have called:
<script type="text/javascript">
function show1() {
document.getElementById(#table1).style.display = 'block';
}
</script>
"#table1" is the Div ID that I'm trying to display after the person clicks a button in flash. I haven't used flash in forever and am struggling finding the answer; it used to be you could just call it by going the getURL route, but that doesn't work any longer. Does anyone know how I would call that function to show the div?
Thanks in advance.