<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1022166" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1022166</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-calculator-problem#comment-1136685</link>
    <description> &lt;p&gt;that alright it&#039;s been a pleasure. In fact I&#039;ll probably do it anyway just for the fun of it &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 22 Aug 2003 19:11:24 +0000</pubDate>
 <dc:creator>druagord</dc:creator>
 <guid isPermaLink="false">comment 1136685 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-calculator-problem#comment-1136684</link>
    <description> &lt;p&gt;Nevermind, we decided to just take out the calculators.  Thanks so much for your help anyway &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 22 Aug 2003 19:03:31 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1136684 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-calculator-problem#comment-1136679</link>
    <description> &lt;p&gt;Don&#039;t worry about it - it was good of you to do that much already &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 22 Aug 2003 18:01:05 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1136679 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-calculator-problem#comment-1136678</link>
    <description> &lt;p&gt;if you can wait until monday i&#039;ll probably find an answer but i&#039; a bit busy now sorry&lt;/p&gt;
 </description>
     <pubDate>Fri, 22 Aug 2003 18:00:26 +0000</pubDate>
 <dc:creator>druagord</dc:creator>
 <guid isPermaLink="false">comment 1136678 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-calculator-problem#comment-1136676</link>
    <description> &lt;p&gt;That seems to work!  Thanks a lot!&lt;/p&gt;
&lt;p&gt;But, another problem - an error occurs when the user tries to put in more than one operator (i.e. 9+*).  Any way to fix that too?  I&#039;m trying to figure out what you did there but it&#039;s a little bit beyond me &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;  I&#039;ve tried looking for a different script but I can&#039;t seem to find one with the xy function.   I might just decide to take out the calculator (seeing as how the users probably have a real one sitting on their desks anyway).&lt;/p&gt;
 </description>
     <pubDate>Fri, 22 Aug 2003 17:21:27 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1136676 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-calculator-problem#comment-1136675</link>
    <description> &lt;p&gt;try this it should work but i didn&#039;t test it&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;function calcit() {&lt;br /&gt;strExp = document.calc.shownum.value;&lt;br /&gt;intopen =0;&lt;br /&gt;intclose=0;&lt;br /&gt;for(i=0;i&amp;lt;strExp.length;i++)&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp; if(strExp.charAt(i)==&amp;#039;(&amp;#039;)&lt;br /&gt;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; intopen++;&lt;br /&gt;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp; else&lt;br /&gt;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(strExp.charAt(i)==&amp;#039;)&amp;#039;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; intclose++;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;if(intclose!=intopen)&lt;br /&gt;{&lt;br /&gt;document.calc.shownum.value =&amp;quot;error&amp;quot;;&lt;br /&gt;return;&lt;br /&gt;}&lt;br /&gt;		&amp;nbsp;&amp;nbsp; if (document.calc.exp.value == &amp;quot;x&amp;quot;) {&lt;br /&gt;			document.calc.shownum.value = eval(document.calc.shownum.value);&lt;br /&gt;		&amp;nbsp;&amp;nbsp; }&lt;br /&gt;		&amp;nbsp;&amp;nbsp; else {&lt;br /&gt;			document.calc.shownum.value = eval(&amp;#039;Math.pow(&amp;#039; + document.calc.exp.value + &amp;#039;,&amp;#039; + document.calc.shownum.value + &amp;#039;)&amp;#039;);&lt;br /&gt;			document.calc.exp.value = &amp;quot;x&amp;quot;;&lt;br /&gt;		&amp;nbsp;&amp;nbsp; }&lt;br /&gt;		}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Fri, 22 Aug 2003 17:05:43 +0000</pubDate>
 <dc:creator>druagord</dc:creator>
 <guid isPermaLink="false">comment 1136675 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
