I am having question on how to retrieve data from web page.
There are 'Yes' , 'No' checkbox for different questions on the web page. There are around 50 such questions.
I have to retreive the values submitted by the user by clicking on either Yes or No checkboxes. Then save this data on the server. I have to use Javascript for this.
Since I am new to Javascript I am not getting idea how to implement it.
We are trying to develop an Engineering application using PHP, Javascript with Informix as the back-end.
Is it possible to retrieve data using Javascript but by accessing the Database. Say somebody enters part_no, than using Javascript is it possible to connect to the part master and retrieve the division and desc information?
I am not allowed to use the PHP because this will require the user to insert the part number on the first page (user input page) and then retrieve the information using PHP and display the info on the second page (processing page).
I will need this to be done on the same page. That means the info will need to be retrieved instantly (on the fly).
I think of building a javascript array for the part master table using PHP but finally decided not to as the table is a huge table (contains more than 1000000 records).
I'm trying to use AJAX to load user's profile through a drop-down list on selected user. There are 3 seperate files:
1) view_info.php 2) selectuser.js 3) getuser.php
I tested and found that the value $q did pass from view_info -> selectuser.js -> getuser.php, and value changes correctly as i select different user from the drop-down list. Problem is, it simply can't fetch data from my database using the value $q. I tried debugging it for 3 hours already and is totally out of idea whats wrong with the script. i'm new to AJAX, this is my first script..
I'm completely new to jQuery and Javascript but I have extensive (10+ years) with Flash and Actionscript.
I want to create a dyanmic tree menu, but I wonder what is the best way to get the data from a MySql database.
Honestly, compared to AS3, the implementation of XML seems very primitive... In As3 you simply move around the xml as if those were objects using E4X. This way: MyXML.myNode.myChild[3].text()
So I wonder, what is the best way to work with data from the DDBB? Is there a better way of using XML with jQuery? Maybe JSON?
I am new to jquery and i have no freaking idea about jquery. One of the requirement is to use Jquery to datastore and dataretrieval so on my aspx page, a user enters a comment and clicks on "Add" button.When user clicks on Add button, I wan to add comments to database. Once data is added to db, I also want to retrieve same data, user name and current datetime as a dataset and show it on the page. How can I achieve this? I am creating a webservice which accepts "comments" as parameter and stores into database.
I'm currently working on a personal site and I'm using a very interesting javascript library written by Jacob from nihilogic.dk. This library allows me to extract some EXIF-data from pictures. My site will serve as a picture site where I will post pictures from my future world trip (one year travel from north america to south america).
My idea is to take pictures with a camera with GPS functionality so all the pictures will be tagged (in the exif) with a latitude and longitude value. The objective is to post these pictures on my site when I'm on tour and dynamically link them to a google map so visitors and myself can see the exact location where the picture was taken.
The following libraries offered by nihilogic: (binaryajax.js and exif.js) [URL] are able to read EXIF data such as latitude and longitude from the picture.
Since I'm trying to work with jquery I also tried the jquery version which does also read exif data. However the jquery version of the script doesn't read latitude and longitude tags.You can find this script here:jquery.exif.js
My question is it possible to find a solution that will allow reading out the longitude and latitude data with the jquery script? Is it possible to tell me how to enable this data in jquery?
Here's a test sample of my site using this script. click on the little globe icon under the first picture to see google maps and EXIF data.
i have a web service at this url http:[url]....i use hotel search file with HotelSearch method and method will retrieve xml file contains the matched data. the varialbe that i made post with it is named : HotelData
the data of the variable is a string file that contains an xml data like this
i am currently working on aptana studio nokia wrt plugin to develop a mobile widget where i need to retrieve data from database. i've created a java servlet in eclipse to connect and execute query to the ms sql server 2005 database. in aptana, i am using js file and html file, i'm able to connect to the servlet to retrieve and process the data (split the data) into an array and display the retrieved value (array) on screen. but now i need to put the retrieved value (array) into a drop down list for selection, how could i do that?
for the drop down list, i cannot define the list, it need to be able to read from the servlet as the database is updated, it need to reflect.
I want to retrieve any web page content using javascript . suppose I logged into my gmail account and opened my e-mail. now i want that a javascript will execute on the page and read all text content from that page (e.g. all email subjects ) and save it in a text file . I may embed the script in my browser. Is this possible ?
I would like to know how I can retrieve html data with jQuery. With my current project I have all pages in 1 html file (jQuery mobile). Every page has his own ID. Page 1 has id="question_1", and the next one is id="question_2".
Now I would like to retrieve this ID and add +1 to the question. So if you press a buton it will always go to the next page.
Need info on retrieving a div from one html page and place it or its contents in another div? I'm trying to load tables from different pages into a div on this page. Tables are currently in divs with id-"table". The page I want to load them into also has a table in a div with id="table". I want to replace one table with other tables without leaving the page. That is, I am trying to prevent linking back and forth.
I've tried the following with no results; xmlHttp.onreadystatechange=function() { if(xmlHttp.readyState==4) { divTable = document.getElementById("table").innerHTML=xmlHttp.responseText; }} xmlHttp.open("GET","../Menu/level9/menutable24.html",true); xmlHttp.send(null);
How can I retrieve the required height of a page to fit in my current browser window's width such that I don't need the vertical scrollbar to see the full contents of the page? In other words, I need the document's height.
Furthermore, I need to figure out how to do this in IE6 w/o switching to strict mode (so, the default IE6 mode = quirks).
have the following code that I thought I could retrieve json_encoded data but I'm just getting "undefined".The json_encoded string from the php array:{"table":null,"id":"2","itemCode":"1003","itemDesc":"Item infor for1003","itemWholesale":"1.99"}]I thought I could "grab" the name of each in the array and output the dataaccordingly. So on success of the ajax post (which does return data) I triedalert(itemData.itemCode); This is on line 10 in the below code snippet. Using this method returns "undefined" and NOT the data 1003 as I would expect.
jQuery Code: $('#search_results tr').live('click', function() { var $itemrow = $(this).closest('tr');
I am writing a small data entry screen that will post the form data to a page and return a message. But i cannot get the Success or Error functions working properly.
Here's the code where strData is the posted querystring of:
I'm not sure whether it should be in a form and using the onsubmit or click of a button.
I've been searching for a few hours and haven't been able to find a code snippet to see if this is available. I'm attempting to pass text from my website to another website that has a form setup on it. I'd like to fill in the pertinent data for my users on the page that I load for them. I cannot make any changes to the receiving page as it is run by another company. I've pasted some of the code that is available on the receiving form.
<script type="text/javascript"> //<![CDATA[ var theForm = document.forms['form1']; if (!theForm) {
I am currently programming Script Adds data to the database but if i want to Shown the data that have been added Requires refresh the page to show the Data that have been added . and I do not want this method.I want to when adding data to show updates as soon as the addition of data.This can be done by Ajax , and An example of this method used Google Gmail.
I am facing some problem with this when i am trying to sent the data in krnlAddComment1.asp page and there is only an insert query exists. after run the query successfully, response.write "...." revert back to me
I would the user of my website to click a link on a page and for some information to display on the page without a reload of the page. This is what I would like to happen in my specific case:The user clicks the name of the cd and the full track list and a small image displays above it, without going to a new page.