Best Practices

Search:

Welcome

Login to contribute. Register if you haven't yet.

Need Support?

Search this site to find an answer. If you still need help, post a Question. Private or account-related support inquiries can be made at the Private Support forum.

Always Put Scripts in CDATA

An errant > or < in your code will give you strange and unhelpful errors if your script code isn't in a CDATA section. Always format your script tags with a CDATA section to avoid these time wasters:

<script type="text/vnd.editme.js"><![CDATA[
// code goes here
]]></script>

Return to Development Best Practices