That is not what I am showing here. The underline is also superscripted in FF. What does your markup look like and do you have any style applied to it already? Anyways, the safest way to deal with this would be to make your markup like so:
HTML Code:
<a href="#">22</a><sup><a href="#">4</a></sup>
With a style section entry of:
Code:
<style type="text/css">
sup a{
text-decoration:none;
}
</style>
Then the superscripted links (written as shown) should all lack underlines for their superscripted parts in all browsers.
Bookmarks