Reputation: 402
I'm using the gwt UlTabBar (com.google.gwt.user.client.ui.UlTabBar). When mouse over this tabbar, a small tooltip in left bottom corner of browser with "javascript:;" label occurs. Is there any way to disable this tooltip? (it doesn't look nice) Thank you!
Upvotes: 0
Views: 102
Reputation: 64541
I'm reading between the lines here but:
javascript:;
is generated either by an Anchor
with no href, or an Hyperlink
without target history token.In any case, a link without target is by definition not a link. Don't use a link if you mean something else.
Upvotes: 2