Sign in to follow this  
Yann Le Bihan

XHTML 1.1 compatibility

Recommended Posts

Is there a way to have an xhtml 1.1 compatible code which works with Firefox? In other words, a way to use the charts with the object tag instead of embed tag.

 

I have tried :

 

<object width="900" height="300" name="Column3D" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" >

 

<param name="movie" value="../fusioncharts/Column3D.swf" />

 

<param name="quality" value="high" />

 

<param name="flashVars" value="..." />

 

</object>

 

But it doesn't work.

 

Any idea?

Edited by Guest

Share this post


Link to post
Share on other sites

I have found the answer by myself:

 

 

 

<object width="830" height="300" type="application/x-shockwave-flash" data="fusioncharts/StackedColumn2D.swf" >

 

<param name="quality" value="high" />

 

<param name="flashVars" value="..." />

 

<param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer" />

 

</object>

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this