I'm thinking surely someone has asked this before but I could not find it searching.
I was wondering if it was possible to set the target of a hotspot click to a show/hidable div within the same window? My clients do not want a new browser window to open and they don't want the current window replaced.
I saw there was the ability to add a javascript call. I am thinking something like
<div id="wr360popup"></div>
<script>function showwr360popup(aTargetURL) {
closebuttonhtml = "<div onclick='$(this).parent().hide()'> X </div>";
$('wr360popup').html(closebuttonhtml + aTargetURL);
$('wr360popup').show();
}
</script>
The problem is I don't think this will work if there are multiple spins on a page. Which leads me to... What are the chances something like this could be built in?
I was wondering if it was possible to set the target of a hotspot click to a show/hidable div within the same window? My clients do not want a new browser window to open and they don't want the current window replaced.
I saw there was the ability to add a javascript call. I am thinking something like
<div id="wr360popup"></div>
<script>function showwr360popup(aTargetURL) {
closebuttonhtml = "<div onclick='$(this).parent().hide()'> X </div>";
$('wr360popup').html(closebuttonhtml + aTargetURL);
$('wr360popup').show();
}
</script>
The problem is I don't think this will work if there are multiple spins on a page. Which leads me to... What are the chances something like this could be built in?