[jQuery] problem with .ajax POST and quotes

2009-11-07 Thread phicarre
Hi all, Problem with .ajax with type = POST error: missing ) after argument list $output .= ""; same error with $output .= ""; no error but display choice1(99, instead of choice1(99,"10") $output .= "

[jQuery] Problem with Ajax Cross-Domain

2009-08-24 Thread Alexander Cabezas
Hi. When i try to make an ajax request like: $.get( "http:localhost:3001/account/create.json", SignUp.onComplete ); I get the following error in the firebug ( Net ): OPTIONS - 405 Method Not Allowed Is it related to cross-domain request?.

[jQuery] Problem with Ajax callback function in jQuery

2009-08-20 Thread dkomo872
I have Javascript code that looks like this: var data1; $.post('save_search.php', formData, function(data) { data1 = data; } ); jsonData = eval('(' + data1 + ')'); if (jsonData.return_status.search("successful") > -1) $('#msg_div').html("Search was saved

[jQuery] Problem with AJAX parsing

2009-05-19 Thread Michael Barcaro
Hello, I'm stuck with a big problem: when I make an AJAX call I receive a response object which I parse with jQuery: $.ajax({ url: 'myUrl.html', complete: function(m){ var txt = $(m.responseText); alert($(m.responseTe

[jQuery] Problem with Ajax Request and Escape

2009-05-17 Thread Alexander Vey
Hello. First of all, I'm German, so be warned ;) I've got a problem and my very hope are you guys (and girls). Here is my code I use to make a ajax request: $.ajax( $.extend(ajax, { data: { cmd:'ping', username:session.username, timestamp:ping.last }, er

[jQuery] problem with ajax request: request is not being sent

2008-08-28 Thread [EMAIL PROTECTED]
Hi, I am using jQuery and Web2Messenger to create a live support script, since this is my first attempt at using jQuery i am not surprised i need help. I got as far as sending the request but using tamperdata (firefox plugin) i checked if the request was going through and it wasnt. [code] $(docum

[jQuery] Problem with Ajax and Firefox - request status is 0

2008-01-21 Thread Mario Villar
Hi everyone. I'm having trouble using the $ajax() jQuery function. The same happens to me in three diferent Ajax calls in two different projects. I'll post sample code of one of them, since I can't really find a pattern common to all three (but different than the other Ajax calls in my code that

[jQuery] Problem with $.ajax() over HTTPS in FF2

2007-08-30 Thread jorgeBadaBing
Error: [Exception... "'Permission denied to call method XMLHttpRequest.open' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "" data: no] this is the error message I get when I switch from http to https. It works fine in

[jQuery] Problem with $.ajax() over HTTPS in FF2

2007-08-30 Thread jorgeBadaBing
Error: [Exception... "'Permission denied to call method XMLHttpRequest.open' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "" data: no] this is the error message I get when I switch from http to https. It works fine in

[jQuery] problem with ajax success

2007-08-16 Thread Draeli
I have this : function verif_subdomain(name) { var r = ''; $.ajax({ type: "POST", url: "verif_subdomain.php", data: "subdomain=" + name, success: function(msg){

[jQuery] problem with $.ajax()

2007-07-18 Thread Salvatore FUSTO
Hi all, i'm developing an intranet order application using many ajax calls; this app is fine on my pc intel pIV-2800 Mhz based, and on the internet, but when i try to install in on the server on the intranet, it fails. this server has an amd athlon x64 4400+, with 2Gb RAM. if tou test http://www.

[jQuery] problem with ajax

2007-05-22 Thread Danbh
Hey everyone, I'm trying to use the jQuery.ajax function, to fetch a webpage on which I would like to run some jQuery on that page. The problem that I am running into is that dataType field. I am setting it to xml, but ajax keeps returning text. Here is the code: XML_page = jQuery.ajax({ //ge

[jQuery] Problem with Ajax post

2007-05-03 Thread Leonardo K.
I have this code that work fine in Firefox and IE7, but in IE6 doesn't work. $("#enviar").click(function(){ if ($("#message").val() != ""){ var message = $("#message").val(); var nick = $("#nick").val(); $.post('/WebApplication/Webchat', {message: messa

[jQuery] Problem with AJAX and links

2007-04-16 Thread digital spaghetti
Hey folks, I've been working on this one with a little help, but i'm now stuck. I have an AJAX interface, where I want all internal links to load content into a specific div called .content. The issue is it works, except for link in content thats loaded into the div. So far, here is what I ha