[jQuery] append and *slowly* show new content in DOM

2009-06-20 Thread Eric P
oesn't work as I'd expect. The new content appears instantly. $('#div_container').append('hi there!').show('slow'); Thanks for reading, Eric P

[jQuery] Re: Best practice for replacing inline HTML function calls w/several arguments with an event handler

2009-02-13 Thread Eric P
product.color + ' ' + product.price); }); Buy Me! Buy Me! Buy Me! On Feb 13, 10:35 am, Eric P wrote: Hi, I'm fairly new to jQuery (been using a few months now). Binding event handlers to HTML objects via jQuery is awesome, but I find myself struggling to find a solid (I.e., be

[jQuery] Best practice for replacing inline HTML function calls w/several arguments with an event handler

2009-02-13 Thread Eric P
m at a loss when it comes to a solid way to "pass" numerous arguments to the event handling function. Thanks for reading, Eric P.

[jQuery] Form field validation call out (mini pop-up) plugin?

2008-12-10 Thread Eric P
Hi, I've been digging around the net for a jQuery plugin that does a form validation "call out". This would be a little info pop-up near a form field notifying the user why their entry didn't validate. This demo shows pretty much what I'm looking for. Type in a non-integer phone number to see

[jQuery] Re: [tooltip] Problem in IE 6 with multiple tooltips of different 'extra' classes

2008-12-05 Thread Eric P
Done. http://dev.jquery.com/ticket/3689 Thanks, Eric Jörn Zaefferer wrote: > The code looks fine. Could you file a ticket for this? > http://dev.jquery.com/newticket (requires registration) > > Thanks > Jörn > > On Fri, Dec 5, 2008 at 2:46 AM, Eric P <[EMAIL

[jQuery] [tooltip] Problem in IE 6 with multiple tooltips of different 'extra' classes

2008-12-04 Thread Eric P
Hi, Just started messing around with Jörn's tooltip plugin, and I think I found a bug while using IE 6 (not a problem in IE 7 and FF 3). Here's some reference code. http://epierce.freeshell.org/jquery-tooltip-bug/index.html In the example I'm assigning three different tooltips each with their

[jQuery] Re: mixing jQuery with regular JavaScript

2008-10-27 Thread Eric P
reason I had it pounded in my head that everything jQuery needed to defined within the jQuery document instance. Thanks, Eric P.

[jQuery] mixing jQuery with regular JavaScript

2008-10-24 Thread Eric P
simple demonstration. In this example the test() function is not available when the div. $(function(){ function test(){ console.log('hi')} }); hi Any ideas? I'm assuming many others have run into this predicament. Thanks for reading, Eric P.

[jQuery] Re: mixing jQuery with regular JavaScript

2008-10-24 Thread Eric P
On Fri, Oct 24, 2008 at 2:25 PM, Eric P <[EMAIL PROTECTED]> wrote: > Hi, > > I'm trying to mix jQuery with some pre-existing JavaScript/HTML, but > I'm having what appears to be scope issues. > > The code I'm working on already has a bunch of inline event ha

[jQuery] Re: best practices for scripts dir structure, etc.

2008-09-04 Thread Eric P
> using versions is very handy when you want to incorporate the latest > version on a new page in your project, but don't want to go back and > regression test all the other pages in the application > > i've got structure like: > - /jquery/ > -/1.1.8/ > - jquery.js > - jquery.pack.js

[jQuery] best practices for scripts dir structure, etc.

2008-09-04 Thread Eric P
makes sense and don't like what I've got so far since I'm using version numbers inconsistently, both in filenames and dir names, or not at all. Any tips would be great. Thanks! Eric P.