How do i get \r to work in netscape 7 (if possible)?
My error boxes shows something like this
Error: Missing Elements
- Title
- Description
In netscape, it is shown like this:
Error: Missing Elements- Title- Description
Printable View
How do i get \r to work in netscape 7 (if possible)?
My error boxes shows something like this
Error: Missing Elements
- Title
- Description
In netscape, it is shown like this:
Error: Missing Elements- Title- Description
maybe this will show my lack of advanced javascript knowledge, but...what do you mean by \r ? in what context ? any examples of code that breaks under NS7 ?Quote:
Originally posted by GeekSupport
How do i get \r to work in netscape 7 (if possible)?
it shows a return (crlf) in the popup message boxCode:<A HREF="#" onClick="alert('Missing:\rEnd Date')">End Date</a>
ah, thought so. haven't got NS7 installed (and i'm not planning on installing that b*stard program on my home machine), but...have you tried using \n instead ?
Code:<A HREF="#" onClick="alert('Missing:\nEnd Date')">End Date</a>
Thanks, that did the trick