Julian Rickards wrote:
> Hi:
>
> Does anyone know of a little script for IE that will surround < q> text with
> quotation marks?
>
> Jules
>
>
// untested
var qNodes = document.getElementsByTagName('q');
for (var i = 0, length = qNodes.length; i < length; i++) {
qNodes[i].innerHTML = '"' + qNodes[i].innerHTML + '"';
}
- Ken Snyder