Posted by qualitychecker@free.fr on 03/05/07 21:57
Here is the answer : http://joliclic.free.fr/html/object-tag/object-svg.html
<object type="image/svg+xml" data="data/test.svg" width="320"
height="240">
<param name="src" value="data/test.svg">
alt : <a href="data/test.svg">test.svg</a>
</object>
In fact this method loads the svg file twice.
Use this instead :
<object type="image/svg+xml" width="320" height="240">
<param name="src" value="data/test.svg">
alt : <a href="data/test.svg">test.svg</a>
</object>
It works fine with IE and Firefox.
Thanks for your help !!!
[Back to original message]
|