views:

27

answers:

2
+2  Q: 

Skype links in IE

They are ruining the page I'm making. Anyone know a way of turning them off?

It ends up making the text look odd and blurry:

I Hate You IE

I've tried obfuscating them as so:

+44 (<span>0) 1234</span> 567 890

but Skype still recognises them. I am aware that is a plugin, just wondered if anyone knew of any meta tags or equivalent.

+1  A: 

This looks like fun (jQuery):

$(document).ready(function() {
    window.setTimeout(function() {
        $('.skype_pnh_container').html('');
        $('.skype_pnh_print_container').removeClass('skype_pnh_print_container');
    }, 800);
});

Copied from http://www.petefreitag.com/item/751.cfm

spender
Thanks spender, it doesn't work though? I've delayed the timeout. Maybe Skype have changed their plugin markup. I will borrow the principle though.* cracks open firebug lite *
Kevin Sedgley
+1  A: 

Found the answer - use &shy; between numbers.

Kevin Sedgley