Take a look at this link:
If you click on the jacket, you will see an alert pop up saying "here". By examining the page source, you'll find the onclick event responsible for triggering this alert.
Hovering over the jacket will reveal a tooltip. I employed the jquery tiptip plugin to create this tooltip. To use this plugin, you need to place the tooltip's content inside a title attribute.
I am attempting to make an onclick event work when the user clicks on the large pink button within the tooltip. However, it is not functioning as expected because the alert message I set as "intooltip" is not displaying.
The code snippet for the onclick event is as follows:
onclick="alert('intooltip'); clickstatistictit(this.rel); _gaq.push(['_trackEvent', 'outgoing', 'boyner.com.tr', '']); trackConv('995622692', 'JMHBCOzUgAQQpP7f2gM');"
I am unsure if the issue lies in using double quotes around "intooltip" instead of single quotes. When I try using single quotes, it closes the tooltip content that begins with title='
Alternatively, the problem could be something entirely different. Do you have any thoughts?
Thank you, Andrew