How do I get information from a Click event?

R

RayTheOtherRay

I'm using OWC11 and am trying to create some interactive functionality
using the Click event. From another post, I have a working click event
with the following function between <head> and </head> in my page...

<script language="Javascript">

function EAC_History_19179_Chart_Click()
{
alert('What are you looking at?');
}

</script>

....and the following code between <body> and </body> in my page...

<script language='javascript' for='EAC_History_19179_Chart'
event=Click()>
EAC_History_19179_Chart_Click();
</script>

It successfully alerts the desired test message. However, I'm looking
for the pertinent properties that will give me information about which
data set the user clicked. I'd like to use that data set information
to hyperlink to another page related to that dataset.

Can you point me in the direction of the OCW11 property that might
help?

Thanks!
Ray <><
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top