html - (SVG) Is it possible to have multiple instances of <object>? -


i want embed svgs via <object>-tag (with <img> inside backwards compatibility).

<object type="image/svg+xml" data="/res/qm.svg"></object> <object type="image/svg+xml" data="/res/valid.svg"></object>  <object type="image/svg+xml" data="/res/qm.svg"></object> <object type="image/svg+xml" data="/res/valid.svg"></object>  <object type="image/svg+xml" data="/res/qm.svg"></object> <object type="image/svg+xml" data="/res/valid.svg"></object>  <object type="image/svg+xml" data="/res/qm.svg"></object> <object type="image/svg+xml" data="/res/valid.svg"></object> 

now i've notice if want use picture multiple times on page downloaded every time again (testet ff only).

enter image description here

can that? if not, mean discard object-approach.

i don't want use javascript.


Comments

Popular posts from this blog

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -