1
vote
1answer
29 views
[jQuery] Load specific elements from a page with an AJAX call and append them to a list?
I've got two page:
Page 1 has a title, an empty ol and some jQuery that calls an AJAX function.
Page 2 has an ol filled with list items from which I plan on pulling specific ones.
The AJAX I'm …
0
votes
2answers
63 views
how to call a php function from javascript or if that can’t be done, some direction on what I should do
Hi, I've created a jquery dialog modal box for logging into my website:
$('#login').dialog({
modal: true,
position: 'center',
autoOpen: false,
title: 'Login',
height: '750px',
width: …
1
vote
2answers
36 views
How can I replace an <object…> with the actual content of that object?
Lets say I have this:
<object class="MyClass" type="text/html" data="/Whatever/1?renderpartial=1"></object>
<object class="MyClass" type="text/html" …
0
votes
3answers
40 views
Website scraping using jquery and ajax
Hello,
I want to be able to manipulate the html of a given url. Something like html scraping. I know this can be done using curl or some scraping library.But i would like to know if it is possible to …
2
votes
2answers
45 views
POST method, Ajax and Security?
I use Ajax (jQuery) and the POST method to update data in the database. I do the following:
Get data from the form: user_id, entry_id, content,...
Send them to a URL which will process the data.
If …
1
vote
2answers
61 views
MVC architecture for front-end
Hi!
I am writing application in PHP (+ MySQL database), but it gonna be mainly AJAX aplication. So, I am wondering, how to create frontend? Frontend also in MVC? Is it possible?
1
vote
2answers
28 views
How to manage an AJAX based ‘like/dislike’ feature?
I'd like to add a like/dislike-upvote/downovote-type feature to each one of the posts in the forum script I'm writing (much like the one here in SO). I'm having two difficulties trying to figure out …
1
vote
2answers
28 views
How to check a php response for string with jQuery
I have an ajax query sending to a php script and putting the response into a div. The code is as follows:
$.ajax({
type: "POST",
url: "core/process.php",
data: data,
success: function(response){
…
0
votes
2answers
54 views
[jQuery] $.ajax doesn’t seem to be working
I'm working on a jQuery-powered registration form, and I'm checking all the input with jQuery, and the only thing left is to see if a user is choosing an already-registered name.
Here's my Ajax …
2
votes
4answers
80 views
How to update a web page without reloading the web page using AJAX?
I'm trying to update info that a users entered in to a mysql database using php without reloading the web page how can I do this an example or tutorials will be nice.
If there is a tutorial on how to …
0
votes
4answers
49 views
Retrieve Database Value Without Page Load AJAX/PHP/Facebook Style
Hi all,
I am wondering if anyone could show, or explain with examples, how facebook checks its database for new messages? It seems to do it periodically, without loading the page. What would be the …
0
votes
2answers
20 views
php, jquery, flash & .click function in Firefox 3 - stumper
Hi all,
I have a page that is using PHP to build itself and then uses Jquery to embed some SWF's into the page with different Flashvars based off the DB connection in the PHP section of code. I then …
0
votes
2answers
30 views
adding values to a select box from a controller function (Ruby on Rails)
I have a Rails web application with a select box:
<%= select_tag :foo %>
I'm looking to write a function in the controller which would populate this select box with some values. What code …
0
votes
3answers
47 views
How to load an image asyncronously with jQuery and how to know that the image loading is complete?
Well, the question is in the title.
0
votes
3answers
52 views
ajax request to different host
i have the following javascript in my webpage:
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://www.google.com', true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
…
