Forum Discussion
_anomDiebolt_
13 years agoQrew Elite
>Well I now understand why it's happening, but not sure what to do about it
You use scripting of course as it solves just about every problem. There is an event propagation problem which I think is simple to fix but I don't have time to set up an example. Specifically I think you can solve the problem using event.stopPropagation - conceptually something like this:
$("#_fid_6").click(function(event){ event.stopPropagation(); // do something });
You use scripting of course as it solves just about every problem. There is an event propagation problem which I think is simple to fix but I don't have time to set up an example. Specifically I think you can solve the problem using event.stopPropagation - conceptually something like this:
$("#_fid_6").click(function(event){ event.stopPropagation(); // do something });