I problem in the page which involves php and javascript. Since the javascript part doesn't seem to be working so I am posting it here. I have two php files. First one has the drop down list which when selected invokes the second php files. Based on the values passed to the second file. A query is formulated and the results are displayed in the table format. Also the values are stored in an array which is used to create a bar graph, this is done in javascript. The problem is, the graph is not displayed in this case but if I put all the code in one file, the graph is displayed. The table with the data is being displayed in both cases.
how can I display the same Javascript Graph more then once on the same HTML page. Everytime I add another graph using the same code on the same HTML page only one graph will show. Here is the code that I have:
This function should show the graph. What appears is an empty graph, with proper title, axis naming and scaling (!) but no data shows up. FireBug does not report any JS errors.
I am using Javascript: pop up function to pop up bar chart on a new page to show the pointer of the student. My JS codes can run on IE and firefox but fail on chrome. Chrome give me the blank chart as shown below.
I want to display the same thing as in IE and firefox in chrome as well. Below are the codes:
I have an idea for a website I'm about to design and develop and would like some help before voicing this to the client.
The site will be quite sober, technology and science portfolio of a company.So, most of it is just text.
There would be a portfolio menu page, with a few categories (science / technology / web )
Now, instead of having a drop down menu..
I thought it might be a nice idea to have a pie graphIMAGE(well maybe a bit nicer looking)where each color represents the category. Based on the number of projects belonging in that category, the graph would change to show that. is this possible with jquery?
I'm new to Jquery and Jqplot. I have to create a website where a user can upload a xml file which should then be shown as a graph. My main problem is that I don't know how to extract the x/y-axis coordinates from the xml file and how I should put them into the Jqplot code..
I'm just trying right know and show you some Code I made... Don't blame me^^ I'm doing this only for a few days..
Thats my very simple XML file with only x and y coordinates [code]...
I'am new to Jquery and Jqplot. I have to create a website where a user can upload a xml file which should then be shown as a graph. My main problem is that I dont't know how to extract the x/y-axis coordinates from the xml file and how I should put them into the Jqplot code..
I'm just trying right know and show you some Code I made... Dont't blame me^^ I'am doing this only for a few days. Thats my very simple XML file with only x and y coordinates:
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- Edited by XMLSpy® --> <graph> <note>
I try to create a calendar. It's done, it's works fin in Firefox, but it's not displayed in Internet Explorer.
Structure: createElement("div"); append.document.body createElement("table"); append. the div above createElement("tr"); append to table createElement("td"); append to tr
I try to debug this problem and I figure out that if I give a dimension to div (height and width) it will apear on the page. Any ideas?
i am using document.getElementById('div_remark').innerHtml=m_remarkthe data of the variable is dispalyed in the divbut prblm is its not working or getting displayed in Firefox
I have a page with some drag and drop using jQuery at:http://aupresent.thalasoft.com/elear...2/subscriptionBut on IE the images are not displayed, contrary to Firefox which displays them fine.
When the page is loaded, the table 'onOut' will be not shown. I like to make it shown when mouse is on the link 'display and not shown when the mouse is out of the link 'display.'
I am displaying some data from a XML sheet on my webpage. parsing it using javascript ofcourse. Now its working in all browsers except IE. I understand that IE handles xml different to other browsers and I've written that into my code. My issue is that the data I am trying to loop through is not the firstchild of my root node.
Javascript: Code: <script type="text/javascript"> if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); }else{// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } .....
I have a <div> html element which contains other html tags, as well as plain text inside those tags. How do I grab only the content within the div that will actually be displayed in the browser, and put it in a Javascript string variable?
m just a beginner in java scripting.I just made the following code for calculating the factorial of a number [code] however when i try to run it the result is not displayed in the field.
I have a button known as "Prepare Questions". Now when I click on this button, this button does two things, using the validaton() function it validates the form so that if there is an error in the form (empty textbox and radio button not selected) then it displays the suitable error messages on the page. But also the button uses the "openSessionPopup" function so that it opens up a pop up window which states the word "Session".
The problem is that when I click on the button it does both functions, so it displays validation errors if there is some and also opens up the pop up window.
What I want to do is that the pop up window should only be displayed after there are no validation errors. But I can't seem to get this to work, does anyone else know how to do this. I tried modifying it but now the validation works but the pop up window does not appear at all