Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Java Script in form

Avatar

Former Community Member
How to embed a JAvascript in a form?
2 Replies

Avatar

Former Community Member
Hi



I have this following JavaScript I need to embed it into my form.the script is to capitalize the first letter in the name and address fields.

How do i embed it into a form



The Script



function toUpper(obj) {

var mystring = obj.value.toLowerCase();



var sp = mystring.split(' ');

var wl=0;

var f ,r;

var word = new Array();

for (i = 0 ; i < sp.length ; i ++ ) {

f = sp[i].substring(0,1).toUpperCase();

r = sp[i].substring(1);

word[i] = f+r;

}

newstring = word.join(' ');

obj.value = newstring;

return true;

}



Call the above function for any text item .... onkeyup='toUpper(this)'

Avatar

Level 10
Use the Adobe Form Designer and add the script of the appropriate location in the form.



Jasmin