Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-03-31 Thread spinnach
i've got a few sites that use jquery too, and a couple of ones still in development.. the ones that are finished are: http://www.pharmacon2007.com (a site for a pharmacy congress - jquery used all over for various effects and ajax loading - also uses the jquery history plugin, jquery flash and

Re: [jQuery] IE and Javascript in Ajax Content

2007-03-30 Thread spinnach
ie won't execute javascript in the ajax response if there's no text returned along with it.. so simply return some text with it or similar.. or you can wrap it all up in a callback function so you won't need to return any script from the server.. dennis. Dan Shields wrote: > Is there an issue

Re: [jQuery] Selector question

2007-03-28 Thread spinnach
why not just $('ul > li > div.linkSubMenu > ul.detailSubnav > li > a.selected').show() ? or even just $('a.selected').show() or you can set it in css a.selected { display: block; } dennis. Alexandre Plennevaux wrote: > hello ! > > i have a menu which structure for each item is: > (1) ul > l

Re: [jQuery] IE bug or bug in my code ?

2007-03-20 Thread spinnach
> > Abba > > > > spinnach wrote: >> i've also had issues with this, not only in ie but sometimes in firefox >> too.. and ie 6&7 occasionally crashed or couldn't load the page when >> using $().ready() so now i just call the init function from the foo

Re: [jQuery] IE bug or bug in my code ?

2007-03-20 Thread spinnach
i've also had issues with this, not only in ie but sometimes in firefox too.. and ie 6&7 occasionally crashed or couldn't load the page when using $().ready() so now i just call the init function from the footer of the page.. i know it's kind of ugly but it works every time and doesn't crash :)

[jQuery] jquery.flash express install

2007-03-13 Thread spinnach
hi, found a bug in the jquery flash plugin when using the express install feature. ie uses the activex control so for ie MMplayerType should be 'ActiveX' and for other browsers 'Plugin'. currently it was plugin for all browsers so it didn't work properly in ie.. and i think (but i'm not sure)

Re: [jQuery] jQuery.flash plugin and ExternalInterface

2007-03-11 Thread spinnach
np, i'm glad someone found this helpful.. dennis. Benjamin Sterling wrote: > Spinnach, I can't answer your question, but thanks for the fix info. I > am actually in the process of converting a project I did a while a go > over to jquery and there is alot of flash/javascrip

Re: [jQuery] jQuery.flash plugin and ExternalInterface

2007-03-10 Thread spinnach
way so in the end it turned out that the html has to be written with $('#div')[0].innerHTML instead of $('#div').html() .. so if anyone else has this issue, it can be solved this way.. and just wanted to ask, does anybody know why it works with innerHTML and not with .html(

Re: [jQuery] jQuery.flash plugin and ExternalInterface

2007-02-16 Thread spinnach
les/flashembedcagematch) describes the known > issues. > > Luke > > spinnach wrote: >> ..i switched from swfobject to jquery.flash, to avoid redundancy, and >> this plugin uses swfobject.. but if it won't work any other way, i'll >> use it :).. >> >

Re: [jQuery] jQuery.flash plugin and ExternalInterface

2007-02-16 Thread spinnach
..i switched from swfobject to jquery.flash, to avoid redundancy, and this plugin uses swfobject.. but if it won't work any other way, i'll use it :).. thanks anyway.. Benjamin Sterling wrote: > I had the same issue a while back and got it to work using this plugin > http://malsup.com/jquery/m

Re: [jQuery] jQuery.flash plugin and ExternalInterface

2007-02-16 Thread spinnach
id')[0].callback(); > > Luke > > spinnach wrote: >> Hi, >> >> i'm using the jQuery flash plugin to embed a flash movie to a webpage, >> and the ExternalInterface to communicate between flash and javascript.. >> in firefox everything's worki

[jQuery] jQuery.flash plugin and ExternalInterface

2007-02-16 Thread spinnach
Hi, i'm using the jQuery flash plugin to embed a flash movie to a webpage, and the ExternalInterface to communicate between flash and javascript.. in firefox everything's working as expected, but i can't get it to work in ie.. these are the as and javascript snippets: flash: import flash.exter

[jQuery] IE, Flash, Ajax & Page title problems..

2007-02-06 Thread spinnach
Hi, ..on a webpage we're currently developing [1] (using jquery for various ajax calls, fades and stuff, also using jflash and jhistory), since all page changes are through ajax (well ajah actually), i change the page title manually through javascript.. everything works fine in firefox, but

Re: [jQuery] packing or mod_gzip (or both)

2007-01-17 Thread spinnach
..on my machine, ff2 ~110ms, ie7 ~45ms, opera ~80ms.. netscape produced some strange results, once it's ~60ms, once it's ~150ms.. and i always thought ff was faster with javascript than ie... running win x64 on an athlon64 3000+... on the sites i'm making, since when packing ie7 has issues with

Re: [jQuery] jQuery 1.1b

2007-01-11 Thread spinnach
thunderbird so i'm not sure :)... spinnach wrote: > hey, > > sorry about that, it was my fault, i tried to fix the compatibility > plugin, but obviously changed it wrong so that's what caused the error.. > with your fix to the compat. plugin everything works ok... >

Re: [jQuery] jQuery 1.1b

2007-01-11 Thread spinnach
tioned, in SVN rev 1010. > > Can you be more specific about the t.replace bug that you mentioned? I > can't seem to locate it anywhere. > > --John > > On 1/11/07, spinnach <[EMAIL PROTECTED]> wrote: >> ..i have a couple of issues with both jquery 1.1b and the

Re: [jQuery] jQuery 1.1b

2007-01-11 Thread spinnach
..i have a couple of issues with both jquery 1.1b and the compatibility plugin.. this is the code from the compatibility plugin: jQuery.each(["id","title","name","href","src","rel"], function(i){ jQuery.fn[ i ] = function(h) { return h == undefined ?

Re: [jQuery] select links not children of li

2007-01-09 Thread spinnach
9 > [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > www.dealerskins.com <http://www.dealerskins.com> > > > -Original Message- > From: [EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]&g

[jQuery] select links not children of li

2007-01-08 Thread spinnach
..how to select all links on a page that are not inside a list (not children of 'li')?.. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Selectors..

2007-01-05 Thread spinnach
..should we add this as a feature or enhancement ticket? Yehuda Katz wrote: > Yep. That's one workaround. I personally like the idea of [EMAIL > PROTECTED]|z] though. > > -- Yehuda > > On 1/4/07, *Ⓙⓐⓚⓔ* < [EMAIL PROTECTED] > wrote: > > what happened to filter with

Re: [jQuery] Selectors..

2007-01-04 Thread spinnach
..that's basically the same as $('[EMAIL PROTECTED],[EMAIL PROTECTED]'), but the docs say using :text is faster.. but it would be nice to have the ability to select elements in such manner ( eg. $('[EMAIL PROTECTED]|bar]') or $('[EMAIL PROTECTED]|bar]') ) i had a need for such things a few time

[jQuery] Selectors..

2007-01-04 Thread spinnach
do jquery selectors support something like 'select every [EMAIL PROTECTED] OR password]', eg: $('[EMAIL PROTECTED]|password]) ? .. i know i can select them like $('[EMAIL PROTECTED],[EMAIL PROTECTED]'), but the other method could be faster, if supported, i think :).. ___

Re: [jQuery] Stopping animation..

2007-01-02 Thread spinnach
On 1/2/07, *spinnach* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: no, i mean stopping an animation that's already started.. Michael E. Carluen wrote: Do you mean pause? If so you can pause an execution by using: setTimeout(function() {

Re: [jQuery] Stopping animation..

2007-01-02 Thread spinnach
slow',0.0); }, 5000 ); *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *spinnach *Sent:* Tuesday, January 02, 2007 1:52 PM *To:* jQuery Discussion. *Subject:* [jQuery] Stopping animation.. Is there any way to stop an animation or fade? How to stop $('#d

[jQuery] Stopping animation..

2007-01-02 Thread spinnach
Is there any way to stop an animation or fade? How to stop $('#div').fadeTo(500,0) on click or something? ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Empty each text field

2006-12-14 Thread spinnach
Mungbeans wrote: > I want to empty every text field in a given form. So far this isn't working: > > $('[EMAIL PROTECTED]"text"]').each(function(){ this.val = ""; }); > > > try $('[EMAIL PROTECTED]"text"]').val(""); ___ jQuery mailing list disc

Re: [jQuery] Finding elements with class

2006-11-22 Thread spinnach
..try without removing the quotes from this... $(this).Puff(500); digital spaghetti wrote: > Ended up fixing it on my own: > > $(document).ready(function() > {$("[EMAIL PROTECTED]|=menu]").click(function(){ > $("this").Puff(500) > }); > }); > > However, I'm not getting Puff