I have this a
and I don\'t know that I need to insert into the \"onmouseover\" so that the cursor will change to finger pointer like a regular link:
Solution via pure CSS as mentioned in answer marked as the best is not suitable for this situation.
The example in this topic does not have normal static href attribute, it is calling of JS only, so it will not do anything without JS.
So it is good to switch on pointer with JS only. So, solution
onMouseOver="this.style.cursor='pointer'"
as mentioned above (but I can not comment there) is the best one in this case. (But yes, generaly, for normal links not demanding JS, it is better to work with pure CSS without JS.)