Access to svg's scripts - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T13:41:49Zhttp://stackoverflow.com/feeds/question/247596http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247596/access-to-svgs-scripts0Access to svg's scriptsDavid.Chu.ca2008-10-29T17:01:32Z2008-10-29T19:53:29Z
<p>svg is an xml based graphics and you can add JavaScripts to it. I have tried to access to the script functions defined in a svg. The script in my svg is something like this:</p>
<pre><code><svg ... onload="RunScript(evt);"...>
<script type="text/javascript">
...
function RunScript(loadEvent) {
// Get object in my html by id
var objElement = top.document.getElementById('objid1');
if (objElement)
{
// Extend object tag object's methods
objElement.SVGsetDimension = setDimension;
...
}
function setDimention(w, h) {...}
</code></pre>
<p>In my main html file, the svg is embedded in an object tag like this:</p>
<pre><code><object id="objid1" data="mygrahic.svg" ... >
<a href="#" onclick="document.getElementById('objid1').SVGsetDimention(10, 10);
return false;"
...>Set new dimention</a>...
</code></pre>
<p>This one works fine. However if the svg xml file is referenced by a full URL (on another site) like this:</p>
<pre><code><object id="objid1" data="http://www.artlibrary.net/myaccount/mygrahic.svg" ... >
</code></pre>
<p>the codes do not work any more. It looks like that I cannot attach the method defined in my svg script to a method in my main html object tag element, or the top or document is not available in this case, or getElementById(..) just cannot find my object element in my svg script. Is there any way I can do in the svg xml script to find my html element?</p>
<p>Not sure if this problem is caused by the different DOMs, and there is no way for my svg script codes to figure out another DOM's object or element. It would be nice if there is any solution.</p>
http://stackoverflow.com/questions/247596/access-to-svgs-scripts/247811#2478112Answer by pdc for Access to svg's scriptspdc2008-10-29T18:09:30Z2008-10-29T18:09:30Z<p>I think the clue might be in 'on another site'. There are strict rules about when JavaScript programs from different sites are allowed to communicate with teach other. The embedded SVG is being treated the same way a document inside an <code>iframe</code> would.</p>
http://stackoverflow.com/questions/247596/access-to-svgs-scripts/248183#2481831Answer by Prestaul for Access to svg's scriptsPrestaul2008-10-29T19:53:29Z2008-10-29T19:53:29Z<p>pdc has this one right. Browsers work hard to prevent cross site scripting attacks (XSS) and this is the result. You cannot execute scripts in a document loaded from another domain, or using another port or protocol. For more info you can see: <a href="http://en.wikipedia.org/wiki/Same_origin_policy" rel="nofollow">http://en.wikipedia.org/wiki/Same_origin_policy</a></p>