Hi I'm looking for a simple way to convert a html string into dom. Something like below. Thanks
fintan
var html_string = '<p>Hello World!</p>';
httpwebwitch
11:32 pm on Apr 29, 2008 (gmt 0)
var html_string = '<p>Hello World!</p>'; document.body.innerHTML = html_string;
fintan
8:39 am on Apr 30, 2008 (gmt 0)
Hi httpwebwitch thanks for the reply. Not exactly what I was looking for. I found DOM builder. It's not complete yet but with a bit of work I can get it to do the job. Thanks again.