Best Practices

Welcome

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

Support Options

1. Search this site.
2. Make or vote for a Suggestion.
3. Post to Community Support.
3. Contact EditMe Support staff.

Stay Informed

Keep informed of product changes, tutorials and tips via EditMe's Blog and monthly newsletter.

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