Hi,
I have this code:
<img src="http://10.10.10.149/myImage.jpg" onerror="this.src='http://200.156.45.5/myImage.jpg'" border="0">
If for example the server of url "10.10.10.149" is down, the FCKeditor automatic change the URL, and the code stay this way:
<img src="http://200.156.45.5/myImage.jpg" onerror="this.src='http://200.156.45.5/myImage.jpg'" border="0">
It's possible to configure the editor to don't change the code when the server of url is down ?
Thank's...
Mon, 07/25/2005 - 13:34
#1
RE: automatic img tag format
Remove the onerror attribute?
This is a javascript function, and fires when there is a error. See stuff like:
http://www.javascriptkit.com/javatutors/error.shtml
Good luck.
RE: automatic img tag format
thanks