[Openstreetmap-dev] Re: Experimenting with SVG and JavaScript

nick at hogweed.org nick at hogweed.org
Thu Jul 21 10:51:33 BST 2005


Sorry - I sent the wrong file!
This is it....

<!DOCTYPE html PUBLIC "-W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<style type="text/css">
#svg1 { width: 800px; height: 600px; }
</style>
<script type="text/javascript">
function chsrc(a)
{
	document.getElementById("svg1").setAttribute('data',a);
}
</script>
  <title>SVG as embedded object and nested namespace</title>
</head>
<body>
<h2>Object tag</h2>
<object type="image/svg+xml" data="standalone.svg" id="svg1">
Your browser is currently unable to display SVG images.
</object>
<input type="button" value="one" onclick="chsrc('standalone.svg')"/>
<input type="button" value="two" onclick="chsrc('other.svg')"/>
</body>
</html>




More information about the dev mailing list