vote up 0 vote down star

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:

<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) {...}

In my main html file, the svg is embedded in an object tag like this:

<object id="objid1" data="mygrahic.svg" ... >
<a href="#" onclick="document.getElementById('objid1').SVGsetDimention(10, 10);
   return false;"
...>Set new dimention</a>...

This one works fine. However if the svg xml file is referenced by a full URL (on another site) like this:

<object id="objid1" data="http://www.artlibrary.net/myaccount/mygrahic.svg" ... >

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?

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.

flag

57% accept rate
What browser(s) are you targeting and testing with? If those browsers don't have SVG support built-in, whose SVG plugin(s) are you using? – Charles Duffy Oct 29 '08 at 17:20
Firefox I use right now. It does show svg graphics well. This is just script issue. I think the answer by pdc may be the reason. – David.Chu.ca Oct 29 '08 at 19:32

2 Answers

vote up 2 vote down

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 iframe would.

link|flag
vote up 1 vote down

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: http://en.wikipedia.org/wiki/Same_origin_policy

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.