i need to get 'svg' element inside 'object'. Normally we can use
$("object").find('svg') but the problem is the presence of #document.
I also tryed maybe every combination of $( "#id" ).contents().find('svg') or again
$($("object").get(0)).find('svg') ,
and believe me, many more....
Thx in advice for help.
html code:
<object data="./images/image.svg" type="image/svg+xml" class="class-svg" id="id">
</object>