Ive used this function to insert a character in a text area:
- Code: Select all
function addChar(inChar)
{
document.getElementById("BlaBla").value = document.getElementById("BlaBla").value + inChar;
document.getElementById("BlaBla").focus ();
}
it works perfect with IE , but it doesnt work in other brwosers!
can U help me how can I set this function working in all browsers?
Cheers



