For IE:
Orkut has this problem below, when post an Activity in IE, i type a hyperlink, click enter key and type something else. Orkut will always join them together. E.g.
http://img1.orkut.com/images/small/1311234242/650352773/ln.jpg
dou hello
then get activities,orkut will return a Jason data like this:
“{…,’body’:’ http://img1.orkut.com/images/small/1311234242/650352773/ln.jpgdou
hello’,...}”
The returned data didn’t divided the url(‘http://img1.orkut.com/images/
small/1311234242/650352773/ln.jpg’) & the string(‘dou hello’) by a “\n”
So , i'll get a wrong url(http://img1.orkut.com/images/small/
1311234242/650352773/ln.jpgdou).
But for Mozila:
post the same content :
http://img1.orkut.com/images/small/1311234242/650352773/ln.jpg
dou hello
then get activities,orkut will return a Jason data like this:
“{…,’body’:’ http://img1.orkut.com/images/small/1311234242/650352773/ln.jpg\ndou
hello’,...}”
The returned data divided the url(http://img1.orkut.com/images/small/
1311234242/650352773/ln.jpg) with the string(dou hello) by a “\n”
therei can get a correct url(http://img1.orkut.com/images/small/
1311234242/650352773/ln.jpg)