this is starting to **** me off now. i have a simple line of html.....
that works fine - no problem. but in place of 'something', i want to use
i suppose it should look something like this....
but i've tried all combinations of single/double quotes and escaping and none work. i've got firebug installed and i still can't figure it out.
someone please save my sanity.
Code:
<input type="button" onclick="document.getElementById('message').innerHTML = 'something';">
that works fine - no problem. but in place of 'something', i want to use
Code:
<div id="red"><p><label> </label>please wait!</p></div>
i suppose it should look something like this....
Code:
<input type="button" onclick="document.getElementById('message').innerHTML = '<div id="red"><p><label> </label>please wait!</p></div>';">
but i've tried all combinations of single/double quotes and escaping and none work. i've got firebug installed and i still can't figure it out.

someone please save my sanity.
