Sign in to follow this  
Dhruva

Posting html code

Recommended Posts

No one seems to be able to answer my first dumb question, so here's an even dumber one. It says to post code within


. When I do this and preview the post I do not see the code. ???

Share this post


Link to post
Share on other sites

When I view this post using FireFox, I cannot see the code.  One problem solved.

<html>
<head>
<script language="JavaScript" src="../FusionCharts/FusionCharts.js"></script>
</head>
<body bgcolor="#ffffff">
<div id="chart1div" align="center">The chart will appear within this DIV. This text will be replaced by the chart.</div>
<script type="text/javascript">
  var myChart1 = new FusionCharts("../FusionCharts/Column3D.swf", "myChart1Id", "900", "300", "0", "0");
  myChart1.setDataURL("Data.xml");
  myChart1.render("chart1div");
</script>
<div id="chart2div" align="center">The chart will appear within this DIV. This text will be replaced by the chart.</div>
<script type="text/javascript">
  var myChart2 = new FusionCharts("../FusionCharts/Pie3D.swf", "myChart2Id", "500", "300", "0", "0");
  myChart2.setDataURL("Data.xml");
  myChart2.render("chart2div");
</script>
</body>
</html>

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