javacsript "onClick" issue! HELP Programming Web Development by Gunto Hello! I have a table with cells, and each cell contains the following code: [CODE] <td align='center' bgcolor='#C45651' width='80' height='60' nowrap='yes' id='$' onClick='callPicture(this);'><p dir='ltr'><img border='0' src='X.jpg' width='80' height='60'></td> [/CODE] The javascript function [CODE]function … Re: javacsript "onClick" issue! HELP Programming Web Development by @developer The code seems to be getting the id of the object in both firefox and IE.Try alerting it.Check what you are getting. [CODE] <script> function callPicture(ID) { alert(ID.id); } </script> [/CODE] javacsript code not saving by ckeditor into database Programming Web Development by irphan Hi this is irphan.I am using ckeditor for updating the value into database using php my code contain javascript tags like this .... <script="text/javascript"><a href="costs_prices_rates_book_editing.php" onmouseout="turnoff('pic2')" onmouseover="lightup('pic2')"> <img alt="Get a FREE … Drawing a Curved line? Programming Web Development by tryphy Hi guys, I wanted to draw a curved line using javacsript... I know can draw a straight line, cirle, rectangle, arc.. But if i wanna draw a curved line in a graph... how can it be done..Its like .. oN Click , then the curved line appears... Regards Tryphy Re: CSS Quicky Digital Media UI / UX Design by 72dpi … the same and it works well.. This code, unfortunately, is javacsript, but there is a php code for it. basically, get… Re: Export Data to CSV format, new data since last download Programming Web Development by almostbob sorry, I have very little javacsript except for a form validation have never got my attempted AJAX to crawl, let alone fly I read the guides, and everything gets blurry Re: php form - pop up window if succeed Programming Web Development by richieking … the popup file created and must be referenced inside you javacsript function This will do what you wanted. :) Re: PHP and AJAX: Auto-Populate SELECT BOX Programming Web Development by klemme …?? Not sure if i get the id correct? [B]The javacsript file is like this:[/B] [CODE] // JavaScript Document function MakeRequestObject… Re: jQueryUI Effect - Where is the code ? Digital Media UI / UX Design by Siberian Prit - Unless I'm blind, there are no easing scripts in my download ? iamthwee - Transitions can make a div appear and disappear with effect ? I never stopped learning Javacsript, what was so painful ? :) Re: Drawing a Curved line? Programming Web Development by MidiMagic We use the technique from calculus of dividing a curve up into a lot of very short straight lines: - Define the curve with arrays. Use an array of x coordinates for the points in curve, and an array of the y coordinates. - Draw a line from the x,y coordinate of the first point to the x,y of the second point, then from the second point to the … Re: Drawing a Curved line? Programming Web Development by tryphy Can give me an example Re: Drawing a Curved line? Programming Web Development by MidiMagic One idea is to make a sine wave using the sine function: [code] var x = Array(50); var y = Array(50); function makesine(){ var i; for(i=0; i<50;i++){ x[i] = i/10.0; y[i] = Math.sin(x[i]); }; }; function showgraphic(){ var i, px, py; px = x[0]; py = y{0}; for(i=1; i<50;i++){ drawLine(px, py, x[i], y…