i want to keep the appearance effect of hyperlink like the underlink、the finger when hood on cell, but i don't want to jump to another link when click on cell. I want to trigger a function to do something.
Regards
Leon
Hello Leon,
You can try to apply following CSS to a span
text-decoration: underline;
cursor: pointer;
Or you can use regular links and prevent default behavior in the JavaScript handler:
function onLinkClick(e) {
e.stopImmediatePropagation();
// your code
}
Hope it helps.
Regards,
Ian
Hi lan
I will try your solution. Many thanks
Regards
Leon