[jQuery] Ajax problem on Safari/Chrome browsers

2009-09-26 Thread indre1
Any suggestions, why this code is not working on Webkit browsers: (function($) { $.fn.followUser = function(userId) { this.fadeOut(250); $.get("profile.php", { do: "addfriend", id: userId }, function(data) { return this.html('Follower added').fadeIn(250);

[jQuery] $ajax() problem

2009-08-10 Thread yi
$.ajax({ type: "POST", url: "mywebpage.aspx?Arg="+args2, contentType: "text", data:"{}", data

[jQuery] AJAX Problem

2009-05-07 Thread Arak Tai'Roth
Hi there, so I am trying out jQuery recently, moving from MooTools, and needed to do some AJAX. Here is my code: $(document).ready(function(){ $('#events_box a.ajax_replace').click(function(e){ e.preventDefault(); $('.news_border').slideUp('slow');

[jQuery] AJAX Problem

2009-04-17 Thread Rogue Lord
Hey folks, I noticed that when I was using $.ajax() on a $('a').click () to pull up an external page (eg "stats.php" within the same folkder) within a div called #main_content that any link that was pulled up in that would not have the same effects as outside of it. Is there a way to pass the inhe

[jQuery] ajax problem in IE

2009-03-29 Thread webguy262
I have two forms on a page (www.eastexhaust.com/inventory.php). One uses ajax to generate a part number by selecting values from a series of selection boxes. The other form emails the part number so we can reply with a quote. Everything works fine in FFox, but does not work in IE. Therefore,

[jQuery] [AJAX] Problem with loading jquery through ajax

2009-02-17 Thread r1u0...@gmail.com
Hi, I've got master page with menu. When I click on menu option new page should be loaded (quite normal :P). I'm trying to do that using: $.post("hotline.aspx", function(data) { $("#load").html(data); }); And div "load" is populated with html, but it seems like it isn't executed (there is f.e. j

[jQuery] Ajax Problem with IE works fine on FF

2009-02-04 Thread Xross
Hi, I am having problem with IE6 / IE7 but IE8 works fine. Here's my ajax call *** function getJSonDate() { var Usex =""; var Uminage = ""; var Umaxage =""; var Ucountry =""; var Uplace = "";

[jQuery] Ajax Problem

2009-01-27 Thread saiful.ha...@gmail.com
hi all, I have 2 file rating.js $(document).ready(function() { var behav = function(){ $(".rating_class").hover(function(){ $("#tooltip_star").css({"visibility":"visible", "top":($ (this).offset().top - 60), "left":($(this).offset().left+$(this).width ()+ 2)}); $.ajax({

[jQuery] Ajax problem - undefined error

2008-06-03 Thread symtab
Hi, I'm new to jquery. I want to develop a upload progress bar using jquery and PHP (i already did this with xajax and php, but i want to use jquery this time). Does anyone know why this doesnt work: $(document).ready(function() { function progress() { $.ajax({

[jQuery] AJAX problem on Internet Explorer

2007-10-17 Thread Sharan
Hello Everybody, Please go to this page http://iconsushi.com/products/ . and add the product by clicking on + icon. The product icon shows up in the shopping cart by AJAX. Now when you click on the product icon (in shopping cart) again it gets removed from the shopping cart. This functional

[jQuery] jquery ajax problem

2007-09-25 Thread luigi7up
Hello everyone, I think Ill go go nuts! I already posted something about problem Im facing with but I didn't get the right answer so Ill try again by expaining my problem further. My PHP website is organised in following manner: MAin file is index.php and it includes other files. So, my "compon

[jQuery] Ajax Problem?

2007-05-23 Thread [EMAIL PROTECTED]
I write this simple code. I check it by using firefox and firebug and firebug gives me that the request is successful. But I don't see the box "ok!"??? So what is the problem? $.ajax({ type: "GET", url: "feed.xml", dataType: "json", success: function(msg){ alert("ok!"); }

[jQuery] Ajax problem with mac osX

2007-04-21 Thread junior2000
Hi, I've a problem with an ajax call only on mac systems. On windows and linux works well. In the systems with problem firebug displays that the post request don't load. I've used the last jquery and the forms plugin. Here the script: Thanks for any suggestion.