[jQuery] Re: $.ajax() issue

2009-09-01 Thread g...@iec
Hi, I installed fiddler and analyised the traffic but i am not able to find the result. So, can you help me out to find whats going wrong? On Aug 29, 7:13 pm, MorningZ morni...@gmail.com wrote: I do not understand did you not ask in the original post: So i need help to figure out whether

[jQuery] Re: $.ajax() issue

2009-09-01 Thread g...@iec
Hi MorningZ, I found the problem. In ie, 'contentType' changed from 'application/xml' to 'text/xml' and on server-side we are expecting 'application/xml'.And in firefox,contentType is application/xml. But don't know how it got changed? Any idea is welcomed. On Sep 1, 11:22 am, g...@iec

[jQuery] Re: $.ajax() issue

2009-08-29 Thread MorningZ
Have you tried an HTTP monitor like Fiddler (http:// www.getfiddler.com) to see what is going on when the $.ajax request starts? That will help diagnose for sure On Aug 29, 9:46 am, g...@iec abhi.pur...@gmail.com wrote: Hi all, I have an issue. I am submitting XML data using ajax call which

[jQuery] Re: $.ajax() issue

2009-08-29 Thread g...@iec
Is there any other way to find out the root cause apart from these. On Aug 29, 6:55 pm, MorningZ morni...@gmail.com wrote: Have you tried an HTTP monitor like Fiddler (http://www.getfiddler.com) to see what is going on when the $.ajax request starts? That will help diagnose for sure On

[jQuery] Re: $.ajax() issue

2009-08-29 Thread MorningZ
I do not understand did you not ask in the original post: So i need help to figure out whether this is client-side or server- side issue Using Fiddler will tell you if it's a client side or server side issue because it will show you EXACTLY what the browser is trying to do something

[jQuery] Re: AJAX issue

2009-05-10 Thread barton
You might try this: $(data).find(item).each(function(i, item) { stuff = $item.find('[nodeName=content:encoded]') ... Where 'data' is what comes back from the ajax call. I couldn't find another way to get the data from a 'xx:yy' element. I asked the question on the board here and this was

[jQuery] Re: AJAX issue

2009-05-09 Thread Mauricio (Maujor) Samy Silva
-Mensagem Original- De: Connor con...@letsbeglobal.com ... item content:encoded![CDATA[p Some text /p ]]/content:encoded /item How would I go about targeting the p tag or the content inside? --- Try:

[jQuery] Re: AJAX issue

2009-05-09 Thread Nazim Jamil
Hello guys and gals, would greatly appreciate it if anyone could help out with a problem I'm having while using FCKeditor?! Whenever I edit some content and submit it, it auto corrects stuff, i.e. image tags or adds these: \quot; into places. Creates loads of problems, nonetheless so if

[jQuery] Re: ajax issue

2009-04-08 Thread Ralph Whitbeck
Try asking this question in the jQuery UI group the UI guys hang out over there mostly and would probably be the best to help you. Good luck, Ralph On Wed, Apr 8, 2009 at 5:05 PM, Rogers roghell...@aol.com wrote: The following code works well in all cases, except when run under the UI

[jQuery] Re: Ajax? issue in IE 7

2008-04-10 Thread David D
I found the problem. $('a.thickbox').click(function(){ $(*).css(padding,0); $(*).css(margin,0); }); I hadn't pasted that in the mail because I didn't think of the missing quotes around * causing a problem. I'm pretty sure I just

[jQuery] Re: Ajax? issue in IE 7

2008-04-10 Thread Hamish Campbell
Ah, hate it when that happens. By the way, are you using Firebug for Firefox? That would help you find this sort of issue a lot quicker. On Apr 11, 6:16 am, David D [EMAIL PROTECTED] wrote: I found the problem. $('a.thickbox').click(function(){                         $(*).css(padding,0);  

[jQuery] Re: Ajax? issue in IE 7

2008-04-09 Thread David D
I'm not for certain the event is firing. What seems kind of strange is hide, show, and other effects dont seem to work correctly in that particular area of the page as well. What marr.adam is saying does kind of describe what seems to be happening, but it only happens from the main page. I am

[jQuery] Re: Ajax? issue in IE 7

2008-04-08 Thread marr.adam
I don't know the ins and outs, and my company is still stuck on ie6, but when we do ajax calls on a tags, we remove the href attribute. There are different ways to achieve the same result w/out the href (this happens often to allow pages to degrade nicely for users with js turned off, replicate