javascript - Remove profile links from twitter widget -


i need remove twitter profile links twitter widget iframe on primary school website (some of parents swear lot! head doesn't want kids click on link on school website limited vocabulary!)

here's code - works in ff not chrome or ie!

<script type="text/javascript"> jquery("iframe").load(function() { jquery("iframe#twitter-widget-0").contents().find("a.profile").each(function(index) {     jquery(this).removeattr('href');     }); }); </script> 

how can make work cross browser, bearing in mind twitter widget sent twitter iframe loads late!


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -