I'm building a mobile web application that may or may not rely on ajax, depending on whether the user's browser supports javascript. Since I'm using JQuery, I want to make sure the mobile browser supports AJAX through JQuery before enabling my AJAX functionality.
I'm running into a problem with Opera Mini because of the way it renders ...
I am calling a Page Method from JQuery as described here: http://encosia.com/2008/05/29/using-jquery-to-directly-call-aspnet-ajax-page-methods/
This is all working fine. During testing I came across an error when my response from the Web Method was too large:
Error during serialization or deserialization using the JSON JavaScriptSerial...
Hello. I have a little page I've been working on. It's at: http://nait.jtlnet.com/~fpkj5v0r/programmer.php - and as you can see, a jquery chart shows up, like it's supposed to.
Now here's the problem.. which has ended up taking up 6+ hours of my time... when I click a link (which uses ajax to load up a new page in the same div), and the...
Hi,
I'm using:
echo $javascript->link('tools.overlay-1.0.4', false);
which is initialized with:
$(".overlay_popup").overlay({
expose: '#000000',
close: '.close_overlay',
finish: {
top: 'center',
left: 'center',
absolute: false
}
});
I call the overlay popup box like this:
echo $html->link(
...
Hi,
The client (browser) sees nothing if a search query is fired and server is taking time to respond back. For this situation I want to keep injecting incrementally processed data from the server into the dom "AJAX way".
Its exactly like Kayak search.
Any framework or something from JQuery?
Thanks
...
i'm using ajax form jquery plugin to submit a form (in a dialog) via ajax.
this works fine and then i get the html response back from the server. the response comes from a standard redirect-after-post php page which i cannot modify.
is there a way to obtain the url of this redirect (the final GET location) using jquery (inside the aja...
I'm running a MOSS2007 Sharepoint website with .NET 3.5 Ajax. I'm using the SmartPart webpart to host a user control that contains an update panel.
I've added the script manager to the /_catalogs/masterpage/default.master file and it works fine when I log in as myself. But when I log in as a normal user I get the error message The contr...
I couldn't understand the purpose of this event from official documantation.
It's commonly used developing controls with clint support (IScriptControl).
get_highlightCssClass: function() {
return this._highlightCssClass;
},
set_highlightCssClass: function(value) {
if (this._highlightCssClass !== value) {
...
Hi guys,
I worked with: http://stackoverflow.com/questions/1648675/asp-net-ajax-check-for-registration-as-a-user
It has a few errors, I don't understand:
1) It worked only one time for one textbox. If the textbox is edited a second time, the breakpoint will not be hited. Why?
2) For my Email, I have a check, that there is no duplicat...
Can you you tell me what would be the difference between of the ID:
var id = $(this).attr("name");
var id = 1;
The problem is that when I'm using the first variable example DOESN'T WORK
$.ajax({
type: "POST",
url: "http://localhost/",
data: dataString,
cache: false,
...
Hi,
I'm trying to get an autocomplete form working, and I can't seem to figure out why I keep getting an this.element is null error.
Here is the js:
//autocomplete
function AutoComp() {
new Ajax.Autocompleter("autocomplete", "autocomplete_choices", "fin/autocomplete", {});
}
document.onLoad = AutoComp();
HTML:
<input type...
i would like to send responses to the client during an ajax request (imagine a file upload or something) and react on that responses on the clientside.
send ajax request
do lot of work on serverside and send information about that to the clientside
during the serverside ist still doing lot of work do something on clientside like inform...
Hey
Does anybody know of any small and simple ajax/php to do lists which I could incorporate into an application I am building?
Ideally we need to create to do and give them due dates.
thanks
...
Hello
I have an ASP.NET application in which i want to post data using jQuery to another page. It means i want post the data of page.
How can i do this with jQuery or AJAX?
Please help me.
$(document).ready(function() {
alert("start");
$("#btnSave").click(function() {
alert("start1");
var aa = '...
I have some javascript:
eval('var incomingJSON =' + ajaxObj.responseText);
for (p in incomingJSON.common) {
document.getElementById(p).value = incomingJSON.common.p;
}
where ajaxObject.responseText is:
{
"common": {
"item1": "1",
"item2": "2",
"item3": "3",
"item4": "4",
"item5": "5"
...
How can I change iframe background color on design time?
By design time I mean the following:
My class extends CompositeControl where i implement design-time support.
this is part of CreateChildControls():
editor = new HtmlGenericControl("iframe");
editor.ID = "editorID";
editor.Style["background-color"] = "Red";
editor.Style["c...
I am trying to get the data return from a function called by a jquery ajax call. My function is located in a a php file and it looks liket his
valid_user() {
$id = $_POST('id');
if($id == 'hello'){
return true;
}
else{
return false;
}
}
and here is my ajax call
$.ajax({
type: "POST",
url...
Hello All,
I want to do something similar to the way twitter searches use AJAX to create the "Real-Time Results".. It seems that the database is polled every 15 seconds or so and the number of new records is displayed to the user after each pull. I am working on a Coldfusion 8 server with a MS SQL database and I need to implement some...
I have a webpage, on which I am using Ajax to replace different divs of my page against some click events.. All works fine for regular HTML... but when I want to add a SWF object tag through function
document.getElementByID("div-id").innerHTML = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000> .... All flash movie code ......
I have an assembly that contains an embedded resource. However, when this assembly is accessed via the web, I get the following error: Assembly 'MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not contain a Web resource with name 'MyAssembly.MyScript.js'.
Ironically enough, if I write an app that uses reflection ...