[quote=feruzz][b]I had a few things about innerHTML[/b]
- It's not a standard W3C DOM

- innerHTML is a string...the DOM methods (document.createElement, appendChild etc...) is not a string, it's a hierarchal object structure...
shoving a string into an object is impure and similar to wrapping a spaghetti noodle around an orange and calling it lunch..
[b]anything good about it?[/b]
- It's faster than DOM methods

by a lot
see [url=http://www.quirksmode.org/dom/innerhtml.html][b]W3C DOM vs. innerHTML[/b][/url]

- it's less verbose than DOM methods
- it allows you to take arbitrary chunks of markup and drop them into a document without having to parse them.
anyway this function creates much faster than innerHTML
<">you can use the above as [b]el = replaceHtml(el, newHtml)[/b] instead of [b]el.innerHTML = newHtml[/b]
this function has been applied to this code --> [url=http://theftalk.com/t18202-Pop-up-Testimonial-v3.1.2.html][b]Pop-up Testimonial Box[/b][/url]

[/quote]
Umm.. then how can I use this on friendster?

Where should I place my html and the content id? [b](newbie)[/b]