January 25, 2008
Add label to “Save and New” Button
//Add Label "Add another Record" to "Save and New" button
var SaveNew = document.all._MBcrmFormSubmitCrmForm59truetruefalse;
if (SaveNew != null)
{
SaveNew.title = 'Add another Record';
SaveNew.children[0].innerHTML += 'Add another Record';
//and change the color of the new text
SaveNew.style.color = '#15428b';
}
—



