[jQuery] Re: Ajax Load, CSS Insert on Loading Gif and Fade Out

2009-11-10 Thread artesianwells
Thankyou Nathan, I am sure this plugin and the filement group loading plugin are great, but I wanted a really lightweight solution that uses the css. If anyone knows how to set it up properly the chaining the etc (if possible using .empty()). Please post. I am sure there are others who would like

[jQuery] Re: AJAX load: scrolling

2009-10-05 Thread Nathan Bubna
No, you can't postpone a DOM refresh as you describe. Your best bet is probably to wrap the table in a div that has a constant height, so the surrounding content remains in place as your table grows/shrinks. On Sun, Oct 4, 2009 at 4:21 PM, Dennis Madsen wrote: > > I've created some jQuery which

[jQuery] Re: AJAX load: scrolling

2009-10-05 Thread Dennis Madsen
Someone? On 5 Okt., 01:21, Dennis Madsen wrote: > I've created some jQuery which remove many tr rows from my table and > inserts new via AJAX. This indicate that the page is scrolling because > first the table increase after elements is removed and afterwards it > grows when the new content is i

[jQuery] Re: Ajax load function - different php each time?

2009-09-25 Thread James
Pass in certain GET or POST data based on the request. $("#DIV1...").load(some.php?id=dothis); $("#DIV2...").load(some.php?id=dothat); $("#DIV3...").load(some.php?id=monkeyseemonkeydo); On Sep 25, 4:04 am, thodoris wrote: > I am developing a webpage that is jquery powered. Many div-hotspots in

[jQuery] Re: AJAX load()

2009-07-17 Thread Phil
:D Brilliant, thanks. I have tried this in some form but i couldn't get it to work. Thanks :) On Jul 17, 8:13 pm, James wrote: > How about something like this: > > > > > >         $(document).ready(function(){ >                 $('input.load').click(function(){ >                         $('

[jQuery] Re: AJAX load()

2009-07-17 Thread James
How about something like this: $(document).ready(function(){ $('input.load').click(function(){ $('#Details').load('episodes.html .'+this.id); }); }); On Jul 17, 8:51 am, Phil wrote: > Here i have a problem: I a

[jQuery] Re: ajax .load() function appends a 0 to returned values

2009-06-29 Thread James
It sounds like it's coming out of your php script. Maybe you left some kind of debug code in there? Something that echos true or false? You can use Firebug for Firefox to check what the returned response for your ajax is. If you see the 0 in there, it's from your php code. If you don't, it's from

[jQuery] Re: ajax load

2009-06-27 Thread Tom Worster
On 6/27/09 11:15 AM, "Peter Marino" wrote: > when I use the $(".main_view").load( "my.php" ); > all my danish letters are rendered wrong. > is there something I need to do in the my.php to make sure it > shows the danish characters correctly? > > anyone? perhaps my.php is returning the text en

[jQuery] Re: Ajax load callback not firing

2008-11-11 Thread Andy
Well I figured it out looking at a previous' user's sample: http://groups.google.com/group/jquery-en/browse_thread/thread/15b15c9c42d11366/bd4011452664bf62?lnk=gst&q=load+callback+not+firing#bd4011452664bf62 Basically, instead of using the .load() function, I'm using the $.get() function. Thank

[jQuery] Re: Ajax load() problems

2008-10-16 Thread Miroku
I get [object Object] so I have a valid jQuery Object... and now how do I make my load work? =___= On 15 Ott, 23:06, MorningZ <[EMAIL PROTECTED]> wrote: > "how do I verify that?" > > quick and dirty way...  "alert" it: if you are using firebug (which > you should be!), type this in the console af

[jQuery] Re: Ajax load() problems

2008-10-15 Thread MorningZ
"how do I verify that?" quick and dirty way... "alert" it: if you are using firebug (which you should be!), type this in the console after the page loads: alert($("some selector")) you should get [object Object] as the result if it's something you need to check in code $("some selector")

[jQuery] Re: Ajax load() problems

2008-10-15 Thread Miroku
Don't really know if I have a valid jquery object... how do I verify that? and... sorry but what do you mean by "Miroku, are you including this in another page."? ^^;; On 15 Ott, 15:27, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: >  Miroku, are you including this in another page. Do you have a

[jQuery] Re: Ajax load() problems

2008-10-15 Thread [EMAIL PROTECTED]
Miroku, are you including this in another page. Do you have a valid jquery object form the call $("#azioni")? I had a weird problem a couple days back where the load would work the first time I clicked it, but the next time I clicked it, the whole page would reload. This was the result of javas

[jQuery] Re: Ajax load() problems

2008-10-15 Thread Miroku
http://www.w3.org/1999/xhtml";> function alCaricamento(){ $('#contenuti').load('chat/chat.php?prova=x'); } that's the page that works... the first one to be loaded this one below is chat.php when the function neither alone neither by clicking the link works