jQuery JavaScript Library suite for AJAX requests. A full set of functions that allows to load data from the server using asynchronous HTTP requests, without a browser page refresh.
0
votes
0answers
24 views
Jquery ajax return value issue
I'm not getting respose as json type data from server.Please look into my code here...
jQuery( "#dialog-form" ).dialog({
autoOpen: false,
height: 500,
width: 750,
modal: true,
...
0
votes
0answers
5 views
Ajax Jquery call made with WCF service
I have found tons of articles and posts about making jquery ajax calls to WCF services. I cannot seem to find one good tutorial for doing this in .net 4.5. I have found an msdn blog post that claims ...
0
votes
0answers
17 views
cakephp 2.3 ajax form submission
I am trying to create a simple form to submit data to the database with ajax. here is my view
<?php echo $this->Html->script('jquery', FALSE); ?>
<?php echo ...
-2
votes
0answers
37 views
jQuery UI Dialog and Javascript functions
SOLVED!
If anyone has the same problem as me:
1) I have a link which onClick's to a javascript function that initializes an AJAX call.
2) The AJAX call is sent (PHP/MySQL) and the correct response ...
0
votes
1answer
11 views
Update Wordpress Custom Field with AJAX on cached page
I'm new to ajax am trying to create a simple hit counter that updates a custom field in Wordpress after the page loads. The page is cached, so any attempts to use PHP alone will not work.
I'd like ...
0
votes
2answers
43 views
jquery each on new elements not working
$('.collapse').each(function() {
var title= $(this).siblings('.accordion-heading').find('a');
$(this).on('show hide', function (e) {
if(!$(this).is(e.target))return;
...
0
votes
0answers
8 views
jQuery .load and Google Analytics
I'd like to know if a site visitor clicked on a link leading to a jquery modal window.
The link to this modal window is a standard hyperlink and replaced when the page loads with:
...
0
votes
2answers
36 views
Why won't jQuery print the whole parsed PHP array?
I am trying to store my product table in an array and use JSON to pass it to jQuery and then use jQuery and HTML show it to the user.
The php code for filling the array
$sql= "SELECT * FROM ...
0
votes
1answer
55 views
How to make a PHP calculator using input from an HTML-Form but to make it give me instant results?
I wanted to create a calculator just for the sake of coding in php. Here is the result: PHPTest
Sorry that some is in German.
Code:
<?php
$umsatz = $_POST['umsatz'];
$varkost = ...
0
votes
1answer
15 views
laravel 4: URL::route vs jquery
(As new laravel user) I'm trying to build a ajax call url through the laravel URL::class:
$.ajax( {
url: '{{ URL::route('getUser', ['3']) }}',
success: function(results) {
...
0
votes
0answers
9 views
how to read a json data in ajax phonegap android
Can any one tell how to read a json data in ajax I have ceated and database server side and i am able to add the data into database. But I dont know how to read a data that i'm storing in object at ...
2
votes
5answers
49 views
Trouble to fetch data from JSON
Am working in jQuery Mobile and PhoneGap.
Currently I have a Trouble to fetch data from JSON.
My JSON format is ;
{
payment: {
1: "Visa",
2: "American Express",
3: ...
-1
votes
1answer
39 views
Causing conflict between the js files [closed]
I am using below three js files jquery.validate for validations and datepicker for js for date picker , i am using jquery -1.9.1 for modal window so becase of the modal jquery 1.9.1 my validations and ...
0
votes
1answer
20 views
Can't show content immediately with ajax jquery
I have code like this:
HTML:
<a href='#' id='link1'>Link 1</a>
<div id='content'></div>
Jquery-script:
$("a#link1").live("click", function (e) {
e.preventDefault();
...
1
vote
3answers
26 views
Ajax request, should it be POST or PUT
I have create a Spring mvc web app.
The app makes a few calls to the controller, these calls are close/open/end game.
I make these calls using ajax.. so i can handle a responce on the top of the ...