I'm writing a perl program that was doing a simple get command to retrieve results and process them. But the site has been updated and now has a java component that handles the results (so the actual data is not in the source code anymore).
This is the site:
http://wro.westchesterclerk.com/legalsearch.aspx
Try putting in:
Index Numbe...
I created a web page that makes an Ajax call every second. In Internet Explorer 7, it leaks memory badly (20 MB in about 15 minutes).
The program is very simple. It just runs a JavaScript function that makes an Ajax call. The server returns an empty string, and the JavaScript code does nothing with it. I use setTimeout to run the functi...
Hello,
I am looking for a way to call successfully custom function from
submitHandler to do proper ajax post.
Here is my custom function:
jQuery.fn.submitWithAjax = function() {
this.submit(function() {
$.post(this.action, $(this).serialize(), null, "script");
return false;
})
return this;
};
Before using validate plugin I had follow...
Hi all.
I have a C# MVC application which is populating a dropdown based on a date selected. Once the date is selected I am sending it to an action via AJAX/jQuery. The action gets a list of items to return for that date.
Here is where my problem is. I have done it previously where I render a partial view from the action and pass it th...
http://portlandonline.com/shared/cfm/json.cfm?c=27321
It's returning null. I don't really have access to this. I have to have a server admin update the feed to my liking, so if you can tell me how to get this to work as is, without adding tags to my HTML please let me know. I will be using this with jQuery, and ive been trying to use g...
It would be very useful if somebody could indicate what the plans are for releasing and licensing the AJAX extensions.
The EULA for Beta 2 states that the software may be used for development and for web site deployment only. Redistribution is explicitly forbidden.
Does that imply that it is going to be released under terms different fro...
Hey,
I have an HTTP Module that I use to clean up the JSON returned by my web service (see http://www.codeproject.com/KB/webservices/ASPNET_JSONP.aspx?msg=3400287#xx3400287xx for an example of this.) Basically it relates to calling cross-domain JSON web services from javascript.
There is this JsonHttpModule which uses a JsonResponseFil...
Basically what I'm doing is checking for the existence of an object, if it's not found, the script will try to load the source file using getScript. I only want to check this once though then return true or false to the function that calls fetch()
fetch:function(obj){
...
isReady = false;
$.getScript(obj.srcFile,funct...
How should i create a preview of image to be uploaded before it is actually submitted using AJAX in PHP?
...
Those errors seems to happen randomly and in the whole system. Sometimes when we click in a button, or even try to login, a alert comes up with the "Message cannot be parsed" error.
Funny thing is that when I turn on fiddler, the thing stars to function ok.
Sniffing the connection via smsniff i was able to capture the traffic of the bu...
Hi,
Could you write where I can find (or where you found ;)) globalization files (e.g. zu-ZA.js), I can't find that files in Microsoft AJAX Library 3.5.
Best regards,
Michał
...
I need to setfocus to a control within a tabpanel of a tabcontainer based on the input validation. The control with the erroneous input needs to be focused and the activetabindex needs to be set for the tabpanel containing the control which genearated the error
Is it possible to set activetabindex of the tabcontainer using the control's...
Hi,
I have this code to update users data, but I can't write the for loop inside jquery data!!
Is there any way to modify the follwing wrong code to be correctly
function DisactiveUser()
{
var num_checkboxes = document.forms[0].elements.length-1;
$.ajax({
type: "POST",
url: "submit/php/users.php?do=disactive",
da...
Given a large text block from a WYSIWYG like:
Lorem ipsum dolor sit amet, <span class="X" id="12">consectetur adipiscing elit</span>. Donec interdum, neque at posuere scelerisque, justo tortor tempus diam, eu hendrerit libero velit sed magna. Morbi laoreet <span class="X" id="13">tincidunt quam in facilisis.</span> Cras lacinia turpis v...
Hello,
I am using a separate PHP file as a configuration file for everything else on a basic ecommerce site.
Here is config/products.php:
$product1["short"] = "product one";
$product1["menuimgslideshowsrc"] = "image/product1.jpg";
When I hover over a button, I want to get $product1["menuimgslideshowsrc"] and swap it out with an IMG ...
i have a 5 stars rating system, on javascript!!! bau i want to update mysql table, when clicking on stars!!! can somebody tell me how can i update the table!!!
thanks. . .
...
Is it required to use a RESTful
service to be able to make a ajax
call to a wcf service (for example: by using
WebInvoke attribute on Operation
contracts)
Once a service is made RESTful by adding a webHttp binding on the service host, can the host have other endpoints as well? (wsHttp or netTcp)
Is it required that the aspNetCompatibili...
On the home page of my site I use JQuery's ajax function to pull down a list of recent activity of users.
The recent activity is displayed on the page, and each line of the recent activity includes a link to the user profile of the user who did the activity.
Will Google actually make the ajax call to pull down this info and use it in c...
So, I'm working with CKEditor and jQuery, trying to build a pop-out editor.
Below is what I have coded so far, and I can't seem to get it working the way I want it to.
Basically, click the 'Edit' link, dialog box pops up, with the content to edit loaded into the CKEditor.
Also, not required, but helpful if you can suggest how to do it. ...
Let's say I have a website that has a lot of information on our products. I'd like some of our customers (including us!) to be able to look up our products for various methods, including:
1) Pulling data from AJAX calls that return data in cool, JavaScripty-ways
2) Creating iPhone applications that use that data;
3) Having other we...