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);
$.ajax({
type: "POST",
url: "mywebpage.aspx?Arg="+args2,
contentType: "text",
data:"{}",
data
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');
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
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,
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
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 = "";
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({
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({
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
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
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!");
}
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.