i have a html page with 2 embed pages
<body>
<embed src ="toolbar.html" type="application/xhtml+xml" width="485px" height="60px">
<embed src="editor.svg" type="image/svg+xml" width="595px" height="842px">
</body>
the first is a toolbar (jquery ui) the second is an xml page with svg in it. both pages have scripts. Is there any way to pass a variable defined in a script from the toolbar to the svg ?
or if that isn't possible:
is there any way to pass a variable defined in the current document to an embedded page ?
tnx in advance