Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Append to Article Body

Here's the code to insert some bit of text to the end of your article body. For the Textpattern plugin.

var obj = document.getElementById('body');
obj.value = obj.value+"SOME TEXT";

Set a Field Equal to Something

A basic code sample for tcm_write_macros. It sets a custom field to a value
/* also - custom-1, custom-2, custom-3, custom-4, custom-5, etc for custom fields. */
var obj = document.getElementById('custom-3');
obj.value = "VALUE";
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS