I have just started using the AsyncController in my project to take care of some long-running reports. Seemed ideal at the time since I could kick off the report and then perform a few other actions while waiting for it to come back and populate elements on the screen.
My controller looks a bit like this. I tried to use a thread to perf...
I have a form. I am trying to validate it through AJAX GET requests.
So i am trying to send the field values in the GET request data.
$('#uxMyForm').serialize();
the problem it is returning something undecipherable. I have used serialize before. This is totally bizzare.
the return value of serialize is
actionsign_upcontrollersite...
I have an ajax function that is not run when the ajax script is included in my HTML page like so:
<script type='text/javascript' src='ajax.js'></script>
However, if I place the exact same script in the head portion of the HTML page, then it does run.
Why does this occur, and how can I fix it?
<script type="text/javascript">
...
It just started experimenting with the ajax.net ToolkitScirptManager and it works fine but then I realized that it is breaking my ajax calls I'm doing using the jQuery library. I'm guessing that it is the issue with the $ symbol, does anyone have anythoughts on how to use both libraries.
I don't want to use jquery's noconflict mode bec...
UPDATE: This is the CFC code that I'm using to retrieve the data.
I'm using the qTip jQuery plugin to create tooltips for a set of links.
Two problems:
How do I create a set of tooltips for three dynamically generated links where the content of the tooltip will also be dynamic:
a href="books.cfm?bookID=11">Book One
a href="books.c...
hi guys - somthing is wrong with my code and i can't get what it is...
i have a div id = "personaltab"
i have a form in side it to login the user with username and password. if success the jquery empty the div and puts in the form of the bidding.
if the user try to bid the other ajax that assign to the button is working but for some re...
On lots of sites now, you can see a Facebook "Like" Button.
- When depressed, it changes background color.
- When mouse-overed, it allows you to write some additional text
I love this interface - lightweight action, but allow for expression of more data if the user wants to.
Anyone has written a similar plugin?
UPDATE:
See: http:/...
Has anyone used jquery to take data from one form field and put it into another? I'm trying to create a form that when one text input is filled out a second is auto-populated with the first letter of the word that is in the first text input. I'm thinking I can limit the second text input to one character to help get the desired result, b...
Hi
I have found the following code to create a search on my site - this works really well the only problem is in Internet Explorer the search doesn't work when you press the return key.
Does anybody have any ideas?
The search code is below - if anything else is needed please let me know.
$(function()
{
$(".search_button").click(func...
Hi all,
I am working on a feature like status message update.. the user can update is status message without page refresh and the new message will be displayed once the user clicks the button and the other users can comment on the status message. The problem I am facing is, when the user submits the data, the new status message will be d...
hello all,
i m using Jquery ajax post method to edit a form on same page, but if there is some mistake then how do i send user back on that page where data were loaded.
now i describe u what i do?
i have a page manageMovies.php there are list of movie name, now when i click on a name of any movie,
then i load editMovie.php on same pa...
I am using the jqueryui autocomplete feature to allow the user to select their location. I need to make sure they select a location from the autocomplete before they can submit the form. I don't want them to be able to submit the form before they select a value.
My solution is after they submit make sure that the value found is in the...
I am working on a web application.
I have a data grid with a 'commands' column that has hyperlinks for some common CRUD operations (Edit, Delete, etc).
When a user clicks on say the Edit hyperlink, I retrieve the unique identifier for the data grid row and load a modal form dialog (i am using jQuery UI) so the user is able to edit the ...
function populate_customer_details(){
$.ajax({
type : 'POST',
url : 'populate_customer_details.php',
data: {
email : $('#txt_email_id').val()
},
success : function(data){
if(data=="NOROWSFOUND"){
alert("Sorry, Email ...
Hi,
I am trying to make a script that updates the captcha image, that is loaded through live() function... It works, but it only updates the image 1 time on firefox, 2 times on safari... How can I make this to work multiple times?
jquery 1.4.2
relevant part of code:
/* captcha image change */
var rand = Math.random();
$('a.captcha_r...
Hi there.
I have the following jQuery ajax call setup:
function Testing() {
var result = '';
$.ajax({
url: 'BookingUtils.asmx/GetNonBookableSlots',
dataType: 'text',
error: function(error) {
alert('GetNonBookableSlots Error');
},
success: function(d...
When mousing over an image in a jcarousel, my site displays a popup whose contents are loaded via ajax. I'm doing what I thought was fairly straightforward; keeping a handle to the xhrRequest object, and aborting the existing one before making a new request.
It works great in all browsers except IE, where I receive an error "Object doe...
hi
i have problem in jquery and php, i am posting data through $.post in jquery but not enable to get data in the next page please healp
jquery code
<?php
include 'dbconnect.php';
$query=mysql_query("select * from test");
?>
<html>
<head>
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javasc...
$(document).ready(function()
{
var response = $.ajax({ type: "GET",
url : "http://www.google.com",
async : false,
success : function(resp) {
alert(resp);
}
});
});
no out...
I have thrown together a quick prototype to try and establish a few very basic truths regarding what inline JavaScript can do when it is loaded with AJAX:
index.html
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
</head>
<body>
<script type="tex...