I finally got this site to validate! The folks over here were really helpful, and pointed out that I wasn’t assigning values to my objects’ style attributes properly. For example, I was doing: [sourcecode language=”javascript”] obj.style.width = 200; [/sourcecode] instead of: [sourcecode language=”javascript”] obj.style.width = “200px”; [/sourcecode] The second way is the correct way because…
Tag: xhtml compliance
Live! Preview and XHTML Compatibility
I’ve added a new feature called “Live Preview”. You can see your comment as it will appear, right as you type it. I randomly just came up with the idea yesterday – I figured I could use the same code I have in place for the preview, for the Live Preview as well. I just…