Tagged Questions
2
votes
0answers
180 views
Google Maps - Finding all the markers inside a given radius Javascript/Php
I have this script that will show custom markers on a google map, but I would like to include a input text-box and be able to enter a city/state and a zip-code and see if there are any markers within ...
2
votes
0answers
87 views
Jquery Mockjax X-editable, help please
UPDATE: Found solution, here it is for anyone that may stumble across this post.
$.fn.editable.defaults.mode = 'popover';
$('.tags').editable({
placement: 'top',
select2: {
tags: ...
2
votes
0answers
125 views
How do I authenticate user from remote server in ajaxplorer
Actually for one application I am using Ajaxplorer and I have one particular domain for authenticate (i.e. www.example.com) and I am trying to authenticate user from that domain, I tried a lot to ...
2
votes
0answers
139 views
PHP clean url template with ajax
I'm having some issues how to build a website template with clean url's.
I have the following files and directories in my root:
.htaccess (redirects every call to a non-existing file or directory to ...
2
votes
0answers
202 views
Run ffmpeg using shell_exec from a file called by AJAX
Good morning,
I will do my best to phrase a "thoughtful" and "helpful" question for all regarding running FFMPEG using shell_exec from a file called by AJAX. First I will start by listing my current ...
2
votes
0answers
615 views
Remote Upload with jQuery File Upload
I need help with a Remote Upload Script that has a page named 'uploadHandler.php'.
I need to create a Remote Upload Script with jQuery PHP File Upload (jQuery File Upload). I would like to upload ...
2
votes
0answers
168 views
Crossfire DAAP Client cannot connect to Firefly
Hello Stackoverflow community, I'm here to ask for a little help.. something I can't seem to work out.
Problem: I'm trying to set up a Crossfire Client (A webclient for Firefly (media server)), ...
2
votes
0answers
168 views
APC not changing its value in an AJAX context
I'm encoutering a strange problem with APC and PHP. This is what I'm doing, and what is happening:
index.php
apc_store("test","test");
Files below are called with ajax, first ajax_1 then ajax_2.
...
1
vote
0answers
27 views
ajax file download : progress event, for download
I understand the xhr.upload.onprogress event (file upload).
Like this :
xhr.upload.onprogress = function(e) { // if (e.lengthComputable) ...
var percentUploaded = Math.floor(100 * ...
1
vote
0answers
27 views
Echoing multiple checkbox values with different names
My HTML+JS :
<head>
<script type="text/javascript">
function passList() {
var p=[];
$('input.first').each( function() {
...
1
vote
0answers
35 views
How to get progress of an AJAX page load in WordPress?
I use a plugin on my WordPress blog called Advanced Ajax Page Loader which simply loads the next page or post through AJAX and then puts it in my specified div. What I want to do is show a progress ...
1
vote
0answers
36 views
Javascript appear(); repeats one single fetch many times
Im new to jquery, ajax and all that is to javascript
I created an update without reload with ajax, red tutorial in internet...so
problem is that appear(); just posting and posting this one single ...
1
vote
0answers
64 views
Populating multi fields by using autocomplete for single field?
I have two text fields in a form name and id, where the name is auto-complete field. If I click the name, the relevant id should be displayed in the second text box. This is the code I am using:
...
1
vote
0answers
163 views
Ajax/PHP login form - developing an android app(Jquery.mobile) using phonegap
My Index.html file code as follows:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mindcorpus - Placement</title>
<link href="style.css" ...
1
vote
0answers
79 views
XMLHttpRequest -> PHP -> Jquery Ajax
When I call a PHP file using,
var xhr = new XMLHttpRequest();
xhr.open('POST', 'file.php');
xhr.setRequestHeader('Accept','*/*');
xhr.setRequestHeader('X-Requested-With','XMLHttpRequest');
xhr.onload ...