Mone Internet Explorer 7 and previous versions have a strange behavior dealing with links containing "javascript:" hrefs. In fact if an HTML "A" element similar to the one below is used in a push-page to run javascript code, then the streaming gets stopped: [highlight=html]<a href="javascript:myStuff()">Click</a> You can use a link like this one to avoid the problem: [highlight=html]<a href="#" onclick="myStuff()">Click</a> The issue is solved with IE8
Mone If you have no chance to change those links because them are generated by something like an ASP.NET control, check this thread.
kalski This can be avoided with [HTML]<a href="#" onclick="myStuff(); return false;">Click</a>[/HTML] Thus the href is not considered at all.