[jQuery] Re: How to use a custom ajax code in page that was loaded with .load()?

2008-10-13 Thread ivframes
e) when loaded through jquery's .load(). But if I start the page manually, like "edit.php? edit=about", it will not, because it cannot initialize. Is there a way for me to code so that it'll work in both ways and in all browsers? I see the trouble is with "onload"

[jQuery] How to use a custom ajax code in page that was loaded with .load()?

2008-10-12 Thread ivframes
I have a page that loads with jquery's .load() function. However, that page is a form with two custom JS files attached. When I load it separately, the JS code works. However, when used with .load(), it does not. What I'm missing here?

[jQuery] Re: Chrome not performing fade and show() functions well

2008-10-12 Thread ivframes
Of course. It's my test site. http://testlab.ivframes.com Just hover those links and you'll see. On Oct 12, 4:26 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > Can you post a link? > > On Oct 11, 3:41 pm, ivframes <[EMAIL PROTECTED]> wrote: > > > Today I t

[jQuery] Chrome not performing fade and show() functions well

2008-10-11 Thread ivframes
Today I tested my site on Chrome and I was severely disappointed. All fadeTo, fadeOut/In, show(), hide() functions work very bad. On the black background you can see the jagged white halo around the text that is about to fade/show/hide. Did anyone else experience this?

[jQuery] Re: Nubee - concatenating & code help

2008-10-09 Thread ivframes
ningZ <[EMAIL PROTECTED]> wrote: > http://docs.jquery.com/Selectors/multiple#selector1selector2selectorN > > $(".closerbutton, .editbutton").show("slow"); > > On Oct 8, 4:42 pm, ivframes <[EMAIL PROTECTED]> wrote: > > > > > > > First of all

[jQuery] Nubee - concatenating & code help

2008-10-08 Thread ivframes
First of all, is it possible to concatenate events with similar (the same) functions? For example: $(".closerbutton").show("slow"); $(".editbutton").show("slow"); ...would be like $(".editbutton", ".closerbutton")... I know that's not possible, but is there another way? I also need help with

[jQuery] Re: jQuery's ajax .load sometimes shows the previous page for a blink of a second?!

2008-10-05 Thread ivframes
"); >                return false; >        }); > > You were starting the animation before loading the page - you need to > start it after the loading is complete. > > --John > > On Sun, Oct 5, 2008 at 3:02 PM, ivframes <[EMAIL PROTECTED]> wrote: > >

[jQuery] jQuery's ajax .load sometimes shows the previous page for a blink of a second?!

2008-10-05 Thread ivframes
Here's the code: $(function ready() { // slide'n'ajax $(".photo").click(function() { $(".jq").hide().slideDown("slow").load("photo.htm"); $(".closerbutton").show("slow").attr("title", "close"); return false; }); $(".about").

[jQuery] Re: How to trigger ajaxed link before the regular ?

2008-10-05 Thread ivframes
ot;, and there is a hook in there for you to prevent the href > action > > $(".about a").click(function() { >       $(".jq").hide().slideDown("slow").load("about.htm"); >       return false; > > }); > > On Oct 5, 8:22 am, ivframes <[E

[jQuery] How to trigger ajaxed link before the regular ?

2008-10-05 Thread ivframes
Hi, I just started learning javascript and jQuery. I have trouble calling ajaxed link before the usual html stuff for the javascript-disabled browsers. The jQuery code: $(".about a").click(function() { $(".jq").hide().slideDown("slow").load("about.htm"); }); HTML: about I tried