Apex 4.1
I have IR wit one column link target to URL, and it uses
javascript:my_function(#COLUMN_VALUE#)
as URL, that is, calls some function and passes the value of that column to the function;
everything works fine;
but when I place a cursor over the link, bottom line of IE9 browser (is it called a 'status bar'?) clearly shows:
'javascript:my_function(<actual value>)'
Is there any way to prevent it from showing function name and parameter value?
I tried
onmouseover="window.status='';"
but it does not work