Do you get the same effect when
onClick="document.all.mk.innerText='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa '">
looks like
onClick="document.all.mk.innerText='aaaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaaa aaaaa aaaaa aaaaa aaaaa aa'">
(space location is arbituary)?
document.all and innerText are decrepited IE only and they are not standard javascript methods. You must use a standard and crossbrowser solution (IE accepts them as well) on using document.getElementById() (and use an id for your elements)
And use element.firstChild.data (or element.firstChild.nodeValue) or even element.innerHTML (not standard but crossbrowser) methods but not innerText
Do you get the same effect when
onClick="document.all.mk.innerText='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa '">
looks like
onClick="document.all.mk.innerText='aaaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaaa aaaaa aaaaa aaaaa aaaaa aa'">
(space location is arbituary)?
Thanks alot, very simple if I have a string with space " "
Bookmarks