[jQuery] Re: jEditable on blank field

2007-06-11 Thread Mika Tuupola



On Jun 12, 2007, at 3:49 AM, Erik Beeson wrote:

Obviously it would be trivial for me to just edit the plugin, but I  
try to avoid that as much as possible (makes upgrading a  
nightmare), and this seems like a legitimate issue. If you try one  
of the jEditable demos and remove all of the text and save it, you  
won't be able to select it again since the field div has no size  
when it's empty.


It is an known issue. I have a solution for it but have not  
implemented it yet. Solution would be to dynamically add a string  
such as "Click to edit" to an empty element. String would be  
configurable. This way you have something to click even if element  
was empty.


Any other ideas are welcome too.

--
Mika Tuupola  http://www.appelsiini.net/~tuupola/





[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ

version 0.1 first release, before lots of demos and docs tested in the
big 4 browsers most current releases. FF 2.004, IE7, Safari 2&3, Opera 9.2

plans include lots more mini-plugs like acronym... more examples.

The base is solid, as long as you don't let the bastards (text nodes are
different than normal dom nodes) get you down!

On 6/11/07, Michael Stuhr <[EMAIL PROTECTED]> wrote:


are these in release state? i couldn't see any version numbers in the
files, just the trac ones.
that makes it somewhat difficult to keep trac ...

micha





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Michael Stuhr


Jörn Zaefferer schrieb:
Have you checked these? 
http://dev.jquery.com/browser/trunk/plugins/methods/

obviously not :-)

thanks. i never liked the trac interface, maybe thats why i never looked 
there.
are these in release state? i couldn't see any version numbers in the 
files, just the trac ones.

that makes it somewhat difficult to keep trac ...

micha



[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Matt Vanderpol
Per a comment on Slashdot (http://apple.slashdot.org/comments.pl? 
sid=238141&cid=19468947)


open %APPDATA%\Apple Computer\Safari\Preferences.plist in your  
favorite text editor. Add:


IncludeDebugMenu


and save it. Restart Safari.

-Matt

On Jun 11, 2007, at 8:00 PM, Mike Alsup wrote:



Anyone know how to enable the debugging tools (console, etc) in  
v3.0 for Win?


 I AM a Mac user and have been for more that 15 years now.  My PC  
is the
machine that sits in the corner b/c I only use it when I have to,  
and that's
for testing web apps only.  It's a laptop, so it doesn't have to  
get in my

way.  I just VNC to it from my Mac when I test. :-)




[jQuery] Re: Show hide div with cookie for remembering position -- possible solution

2007-06-11 Thread Matt Stith

No problem! I probably typed something wrong, i just slapped it in here to
the gmail editor :P

On 6/11/07, bsuttis <[EMAIL PROTECTED]> wrote:



Thanks a lot Matt, I understand the cookie value better now (before I
wasn't using it properly), and the fact that I can combine the css
classes reduces the code a lot, thanks.

While the above didn't work for me, I was able to rewrite my code to
get it to work, here's what I've got (it's very similar to yours) --

$('a.show').hide();

$('a.hide').click(function(){
$('h2.title,.view-header-latest').add(this).hide();
$('a.show').show();
$.cookie('hideShow', 'hide');
return false;
});

var hideShow = $.cookie('hideShow');
if (hideShow=='hide') {
$('a.hide,h2.title,.view-header-latest').hide();
$('a.show').show();
};

$('a.show').click(function(){
$(this).hide();
$('a.hide,h2.title,.view-header-latest').show();
$.cookie('hideShow', 'show');
return false;
});

if (hideShow=='show') {
$('h2.title,.view-header-latest').show();
};


Again, thanks.


On Jun 11, 6:36 pm, "Matt Stith" <[EMAIL PROTECTED]> wrote:
> Hi! Heres a couple things i might do
>
>$('a.show').hide();
>$('a.hide').click(function(){
>$('a.show').show();
>$('h2.title,.view-header-latest').add(this).hide(); //
> Combine multiple
>$.cookie('hideShow","hide",{expires:365}); // Only need
one
> cookie.
>return false;
>});
>
>var hideShow = $.cookie('hideShow');
>if (hideShow=="hide") {
>$('a.hide,h2.title,.view-header-latest').hide(); //
Combine
> multiple
>$('a.show').show();
>};
>
>$('a.show').click(function(){
>$(this).hide();
>$('a.hide,h2.title,.view-header-latest').show();
>$.cookie("hideShow","show");
>return false;
>});
>if (hideShow=="show") {
>$('h2.title,.view-header-latest').show();
>};
>
> On 6/11/07, bsuttis <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi all,
>
> > After searching for a solution to my subject and not finding it, I've
> > put together my own, which while working, feels rather long to me, and
> > as more of a designer/themer, I'm wondering if this is the optimal
> > code from a developer's point of view. I'm using the excellent jQuery
> > cookie plugin for the cookies.
>
> > Here's my jQuery code:
>
> > 
> > $('a.show').hide();
>
> > $('a.hide').click(function(){
> > $(this).hide();
> > $('a.show').show();
> > $('h2.title').hide();
> > $('.view-header-latest').hide();
> > $.cookie('hide', '.view-header-latest',
{expires:365});
> > $.cookie('show', null);
> > return false;
> > });
>
> > var hide = $.cookie('hide');
> > if (hide) {
> > $('a.hide').hide();
> > $('a.show').show();
> > $('h2.title').hide();
> > $('.view-header-latest').hide();
> > };
>
> > $('a.show').click(function(){
> > $(this).hide();
> > $('a.hide').show();
> > $('h2.title').show();
> > $('.view-header-latest').show();
> > $.cookie('show', '.view-header-latest',
{expires:365});
> > $.cookie('hide', null);
> > return false;
> > });
>
> > var show = $.cookie('show');
> > if (show) {
> > $('h2.title').show();
> > $('.view-header-latest').show();
> > };
> > 
>
> > What this does is uses a ul of 2 links, a show and a hide, to control
> > a div below it -- hiding the div as well as the opposite link while
> > doing so (ie. when you click the Hide li a, it hides too and presents
> > the Show li a). Any suggestions are appreciated, justr started getting
> > my hands dirty with jQuery this weekend. Thanks!




[jQuery] Re: getting the caller of an event

2007-06-11 Thread Matt Stith

using javascript is much better than putting the functions inline in the
HTML. Its alot cleaner, and makes it alot easier to manage.

On 6/12/07, james_027 <[EMAIL PROTECTED]> wrote:



Hi,

I have think of that solution, and but my concern is I have read
somewhere that says, why change the dom if you like $
("a").click(alert(this.id);return false); if you could code 

Should it be concern of this?

Thanks
james


On Jun 12, 11:28 am, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> this is for objects , that is not, use that as the name of your
parameter.
> var myEvent = function(that){
>alert(that.id );
>
> }
>
> But in jQuery... you drop all those bogus hrefs for place holders
href="#"
>
> and code
>
> $("a").click(alert(this.id);return false);
>
> On 6/11/07, james_027 <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > Hi,
>
> > I have a  calling a javascript function, but there will be several
> >  calling the same javascript function, and I want to know which 
> > calls it, I have assign different id attribute for each , then I
> > don't know how to proceed ...
>
> > here is my html:
>
> > Caller One
> > Caller Two
> > Caller Three
>
> > here is my javascript
>
> > var myEvent = function(this){
> > alert(this.id);
> > }
>
> > Well, this doesn't work for me, I hope you got what I mean.
>
> > Thanks in advance.
>
> > james
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ




[jQuery] Re: getting the caller of an event

2007-06-11 Thread james_027

Hi,

I have think of that solution, and but my concern is I have read
somewhere that says, why change the dom if you like $
("a").click(alert(this.id);return false); if you could code 

Should it be concern of this?

Thanks
james


On Jun 12, 11:28 am, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> this is for objects , that is not, use that as the name of your parameter.
> var myEvent = function(that){
>alert(that.id );
>
> }
>
> But in jQuery... you drop all those bogus hrefs for place holders href="#"
>
> and code
>
> $("a").click(alert(this.id);return false);
>
> On 6/11/07, james_027 <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > Hi,
>
> > I have a  calling a javascript function, but there will be several
> >  calling the same javascript function, and I want to know which 
> > calls it, I have assign different id attribute for each , then I
> > don't know how to proceed ...
>
> > here is my html:
>
> > Caller One
> > Caller Two
> > Caller Three
>
> > here is my javascript
>
> > var myEvent = function(this){
> > alert(this.id);
> > }
>
> > Well, this doesn't work for me, I hope you got what I mean.
>
> > Thanks in advance.
>
> > james
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ



[jQuery] Re: getting the caller of an event

2007-06-11 Thread Ⓙⓐⓚⓔ

this is for objects , that is not, use that as the name of your parameter.
var myEvent = function(that){
  alert(that.id );
}

But in jQuery... you drop all those bogus hrefs for place holders href="#"

and code

$("a").click(alert(this.id);return false);

On 6/11/07, james_027 <[EMAIL PROTECTED]> wrote:



Hi,

I have a  calling a javascript function, but there will be several
 calling the same javascript function, and I want to know which 
calls it, I have assign different id attribute for each , then I
don't know how to proceed ...

here is my html:

Caller One
Caller Two
Caller Three


here is my javascript

var myEvent = function(this){
alert(this.id);
}

Well, this doesn't work for me, I hope you got what I mean.

Thanks in advance.

james





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] getting the caller of an event

2007-06-11 Thread james_027

Hi,

I have a  calling a javascript function, but there will be several
 calling the same javascript function, and I want to know which 
calls it, I have assign different id attribute for each , then I
don't know how to proceed ...

here is my html:

Caller One
Caller Two
Caller Three


here is my javascript

var myEvent = function(this){
alert(this.id);
}

Well, this doesn't work for me, I hope you got what I mean.

Thanks in advance.

james



[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ

the OS X command is

defaults write com.apple.Safari IncludeDebugMenu 1

I guess it's somewhere in the registry... it it exists!
On 6/11/07, Mike Alsup <[EMAIL PROTECTED]> wrote:



Anyone know how to enable the debugging tools (console, etc) in v3.0 for
Win?

>  I AM a Mac user and have been for more that 15 years now.  My PC is the
> machine that sits in the corner b/c I only use it when I have to, and
that's
> for testing web apps only.  It's a laptop, so it doesn't have to get in
my
> way.  I just VNC to it from my Mac when I test. :-)





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Mike Alsup


Anyone know how to enable the debugging tools (console, etc) in v3.0 for Win?


 I AM a Mac user and have been for more that 15 years now.  My PC is the
machine that sits in the corner b/c I only use it when I have to, and that's
for testing web apps only.  It's a laptop, so it doesn't have to get in my
way.  I just VNC to it from my Mac when I test. :-)


[jQuery] Re: jquery form plugin - double action (fadein) problem

2007-06-11 Thread Mike Alsup


Can you post a sample page for us?


On 6/11/07, slakoz <[EMAIL PROTECTED]> wrote:


the problem exists in ie7, ie6, firefox2, opera.
any suggestions? please help.
regards
sk




[jQuery] Re: Show hide div with cookie for remembering position -- possible solution

2007-06-11 Thread bsuttis

Thanks a lot Matt, I understand the cookie value better now (before I
wasn't using it properly), and the fact that I can combine the css
classes reduces the code a lot, thanks.

While the above didn't work for me, I was able to rewrite my code to
get it to work, here's what I've got (it's very similar to yours) --

$('a.show').hide();

$('a.hide').click(function(){
$('h2.title,.view-header-latest').add(this).hide();
$('a.show').show();
$.cookie('hideShow', 'hide');
return false;
});

var hideShow = $.cookie('hideShow');
if (hideShow=='hide') {
$('a.hide,h2.title,.view-header-latest').hide();
$('a.show').show();
};

$('a.show').click(function(){
$(this).hide();
$('a.hide,h2.title,.view-header-latest').show();
$.cookie('hideShow', 'show');
return false;
});

if (hideShow=='show') {
$('h2.title,.view-header-latest').show();
};


Again, thanks.


On Jun 11, 6:36 pm, "Matt Stith" <[EMAIL PROTECTED]> wrote:
> Hi! Heres a couple things i might do
>
>$('a.show').hide();
>$('a.hide').click(function(){
>$('a.show').show();
>$('h2.title,.view-header-latest').add(this).hide(); //
> Combine multiple
>$.cookie('hideShow","hide",{expires:365}); // Only need one
> cookie.
>return false;
>});
>
>var hideShow = $.cookie('hideShow');
>if (hideShow=="hide") {
>$('a.hide,h2.title,.view-header-latest').hide(); // Combine
> multiple
>$('a.show').show();
>};
>
>$('a.show').click(function(){
>$(this).hide();
>$('a.hide,h2.title,.view-header-latest').show();
>$.cookie("hideShow","show");
>return false;
>});
>if (hideShow=="show") {
>$('h2.title,.view-header-latest').show();
>};
>
> On 6/11/07, bsuttis <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi all,
>
> > After searching for a solution to my subject and not finding it, I've
> > put together my own, which while working, feels rather long to me, and
> > as more of a designer/themer, I'm wondering if this is the optimal
> > code from a developer's point of view. I'm using the excellent jQuery
> > cookie plugin for the cookies.
>
> > Here's my jQuery code:
>
> > 
> > $('a.show').hide();
>
> > $('a.hide').click(function(){
> > $(this).hide();
> > $('a.show').show();
> > $('h2.title').hide();
> > $('.view-header-latest').hide();
> > $.cookie('hide', '.view-header-latest', {expires:365});
> > $.cookie('show', null);
> > return false;
> > });
>
> > var hide = $.cookie('hide');
> > if (hide) {
> > $('a.hide').hide();
> > $('a.show').show();
> > $('h2.title').hide();
> > $('.view-header-latest').hide();
> > };
>
> > $('a.show').click(function(){
> > $(this).hide();
> > $('a.hide').show();
> > $('h2.title').show();
> > $('.view-header-latest').show();
> > $.cookie('show', '.view-header-latest', {expires:365});
> > $.cookie('hide', null);
> > return false;
> > });
>
> > var show = $.cookie('show');
> > if (show) {
> > $('h2.title').show();
> > $('.view-header-latest').show();
> > };
> > 
>
> > What this does is uses a ul of 2 links, a show and a hide, to control
> > a div below it -- hiding the div as well as the opposite link while
> > doing so (ie. when you click the Hide li a, it hides too and presents
> > the Show li a). Any suggestions are appreciated, justr started getting
> > my hands dirty with jQuery this weekend. Thanks!



[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ

http://cigar.dynalias.org/plugins/textNodes/ has another quasi-homepage and
another demo.

On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:


Thanks John! and stop hijacking my thread! Any comments???

On 6/11/07, John Resig <[EMAIL PROTECTED]> wrote:
>
> Ok - I just opened the gates, apparently everything was getting
> moderated. Sorry about that!
>
> --John
>
> On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> > John, I posted once... it never went through! 2 posts came out from
> the
> > list... but that's all. perhaps it's clogged??
> >
> >
> > On 6/11/07, John Resig < [EMAIL PROTECTED]> wrote:
> > > The dev list is back up - I was able to get it back up and running
> > > last week. You can find it here:
> > > http://groups.google.com/group/jquery-dev
> > >
> > > --John
> > >
> > > On 6/11/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED] > wrote:
> > > > it's release 0.1 ... more sample and code to follow. If we had a
> dev
> > list, I
> > > > would have posted there first.
> > > >
> > > > it started with fudging textNodes into a jQuery... it was messy,
> but
> > > > worked... I needed some more tools, so I cleaned it all up... and
> wrote
> > the
> > > > plugin.
> > > >
> > > > the acronym method is especially cute.
> > > >
> > > >
> > > > On 6/11/07, Jörn Zaefferer < [EMAIL PROTECTED]> wrote:
> > > > >
> > > > > Michael Stuhr wrote:
> > > > > >
> > > > > > Ⓙⓐⓚⓔ schrieb:
> > > > > >> a set of plugins to work with textNodes inside the dom.
> > > > > >>
> > > > > >>
> > > > > >>   textNodes() & replace() & split() & span() & acronyms() &
> more!
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> get it here:
> > > >
> > http://jqueryjs.googlecode.com/svn/trunk/plugins/textNodes/
> > > > > >>
> > > > > >> see it here:
> > > >
> > http://cigar.dynalias.org/plugins/textNodes/textNodes.html
> > > > > Interesting stuff Jake. I'm missing some examples that are
> easier to
> > > > > grasp (while quickly scanning over the page). I didn't get yet
> what
> > > > > those are actually good for, though it feels like there is a
> lot.
> > > > >
> > > > > Maybe an interactive demo would help: Offer a textbox where a
> user can
> > > > > enter scripts to run and select or manipulate stuff on the page,
> with
> > > > > hints about which stuff to try out. And/or checkboxes to turn
> plugin
> > > > > options on/off.
> > > > >
> > > > > Pointing users to page source doesn't help much when you don't
> have
> > any
> > > > > idea what to look for.
> > > > > > great idea, i ever wondered if there are more like this e.g.
> to
> > > > > > maipulate array etc.
> > > > > Have you checked these?
> > > > http://dev.jquery.com/browser/trunk/plugins/methods/
> > > > >
> > > > > --
> > > > > Jörn Zaefferer
> > > > >
> > > > > http://bassistance.de
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > > > --
> > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
> > >
> >
> >
> >
> > --
> > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>



--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ

Thanks John! and stop hijacking my thread! Any comments???

On 6/11/07, John Resig <[EMAIL PROTECTED]> wrote:


Ok - I just opened the gates, apparently everything was getting
moderated. Sorry about that!

--John

On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> John, I posted once... it never went through! 2 posts came out from the
> list... but that's all. perhaps it's clogged??
>
>
> On 6/11/07, John Resig < [EMAIL PROTECTED]> wrote:
> > The dev list is back up - I was able to get it back up and running
> > last week. You can find it here:
> > http://groups.google.com/group/jquery-dev
> >
> > --John
> >
> > On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED] > wrote:
> > > it's release 0.1 ... more sample and code to follow. If we had a dev
> list, I
> > > would have posted there first.
> > >
> > > it started with fudging textNodes into a jQuery... it was messy, but
> > > worked... I needed some more tools, so I cleaned it all up... and
wrote
> the
> > > plugin.
> > >
> > > the acronym method is especially cute.
> > >
> > >
> > > On 6/11/07, Jörn Zaefferer < [EMAIL PROTECTED]> wrote:
> > > >
> > > > Michael Stuhr wrote:
> > > > >
> > > > > Ⓙⓐⓚⓔ schrieb:
> > > > >> a set of plugins to work with textNodes inside the dom.
> > > > >>
> > > > >>
> > > > >>   textNodes() & replace() & split() & span() & acronyms() &
more!
> > > > >>
> > > > >>
> > > > >>
> > > > >> get it here:
> > >
> http://jqueryjs.googlecode.com/svn/trunk/plugins/textNodes/
> > > > >>
> > > > >> see it here:
> > >
> http://cigar.dynalias.org/plugins/textNodes/textNodes.html
> > > > Interesting stuff Jake. I'm missing some examples that are easier
to
> > > > grasp (while quickly scanning over the page). I didn't get yet
what
> > > > those are actually good for, though it feels like there is a lot.
> > > >
> > > > Maybe an interactive demo would help: Offer a textbox where a user
can
> > > > enter scripts to run and select or manipulate stuff on the page,
with
> > > > hints about which stuff to try out. And/or checkboxes to turn
plugin
> > > > options on/off.
> > > >
> > > > Pointing users to page source doesn't help much when you don't
have
> any
> > > > idea what to look for.
> > > > > great idea, i ever wondered if there are more like this e.g. to
> > > > > maipulate array etc.
> > > > Have you checked these?
> > > http://dev.jquery.com/browser/trunk/plugins/methods/
> > > >
> > > > --
> > > > Jörn Zaefferer
> > > >
> > > > http://bassistance.de
> > > >
> > > >
> > >
> > >
> > >
> > > --
> > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
> >
>
>
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread John Resig

Ok - I just opened the gates, apparently everything was getting
moderated. Sorry about that!

--John

On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:

John, I posted once... it never went through! 2 posts came out from the
list... but that's all. perhaps it's clogged??


On 6/11/07, John Resig < [EMAIL PROTECTED]> wrote:
> The dev list is back up - I was able to get it back up and running
> last week. You can find it here:
> http://groups.google.com/group/jquery-dev
>
> --John
>
> On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED] > wrote:
> > it's release 0.1 ... more sample and code to follow. If we had a dev
list, I
> > would have posted there first.
> >
> > it started with fudging textNodes into a jQuery... it was messy, but
> > worked... I needed some more tools, so I cleaned it all up... and wrote
the
> > plugin.
> >
> > the acronym method is especially cute.
> >
> >
> > On 6/11/07, Jörn Zaefferer < [EMAIL PROTECTED]> wrote:
> > >
> > > Michael Stuhr wrote:
> > > >
> > > > Ⓙⓐⓚⓔ schrieb:
> > > >> a set of plugins to work with textNodes inside the dom.
> > > >>
> > > >>
> > > >>   textNodes() & replace() & split() & span() & acronyms() & more!
> > > >>
> > > >>
> > > >>
> > > >> get it here:
> >
http://jqueryjs.googlecode.com/svn/trunk/plugins/textNodes/
> > > >>
> > > >> see it here:
> >
http://cigar.dynalias.org/plugins/textNodes/textNodes.html
> > > Interesting stuff Jake. I'm missing some examples that are easier to
> > > grasp (while quickly scanning over the page). I didn't get yet what
> > > those are actually good for, though it feels like there is a lot.
> > >
> > > Maybe an interactive demo would help: Offer a textbox where a user can
> > > enter scripts to run and select or manipulate stuff on the page, with
> > > hints about which stuff to try out. And/or checkboxes to turn plugin
> > > options on/off.
> > >
> > > Pointing users to page source doesn't help much when you don't have
any
> > > idea what to look for.
> > > > great idea, i ever wondered if there are more like this e.g. to
> > > > maipulate array etc.
> > > Have you checked these?
> > http://dev.jquery.com/browser/trunk/plugins/methods/
> > >
> > > --
> > > Jörn Zaefferer
> > >
> > > http://bassistance.de
> > >
> > >
> >
> >
> >
> > --
> > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>



--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ

John, I posted once... it never went through! 2 posts came out from the
list... but that's all. perhaps it's clogged??

On 6/11/07, John Resig <[EMAIL PROTECTED]> wrote:


The dev list is back up - I was able to get it back up and running
last week. You can find it here:
http://groups.google.com/group/jquery-dev

--John

On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> it's release 0.1 ... more sample and code to follow. If we had a dev
list, I
> would have posted there first.
>
> it started with fudging textNodes into a jQuery... it was messy, but
> worked... I needed some more tools, so I cleaned it all up... and wrote
the
> plugin.
>
> the acronym method is especially cute.
>
>
> On 6/11/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> >
> > Michael Stuhr wrote:
> > >
> > > Ⓙⓐⓚⓔ schrieb:
> > >> a set of plugins to work with textNodes inside the dom.
> > >>
> > >>
> > >>   textNodes() & replace() & split() & span() & acronyms() & more!
> > >>
> > >>
> > >>
> > >> get it here:
> http://jqueryjs.googlecode.com/svn/trunk/plugins/textNodes/
> > >>
> > >> see it here:
> http://cigar.dynalias.org/plugins/textNodes/textNodes.html
> > Interesting stuff Jake. I'm missing some examples that are easier to
> > grasp (while quickly scanning over the page). I didn't get yet what
> > those are actually good for, though it feels like there is a lot.
> >
> > Maybe an interactive demo would help: Offer a textbox where a user can
> > enter scripts to run and select or manipulate stuff on the page, with
> > hints about which stuff to try out. And/or checkboxes to turn plugin
> > options on/off.
> >
> > Pointing users to page source doesn't help much when you don't have
any
> > idea what to look for.
> > > great idea, i ever wondered if there are more like this e.g. to
> > > maipulate array etc.
> > Have you checked these?
> http://dev.jquery.com/browser/trunk/plugins/methods/
> >
> > --
> > Jörn Zaefferer
> >
> > http://bassistance.de
> >
> >
>
>
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: jquery is'nt very effective at execution

2007-06-11 Thread mathmax


yes, but why doesn't interruption work even if the callback function
fromonkeyup event is called with a setTimeout ?

Dan G. Switzer, II wrote:
> 
> 
>>function Populate(instance_en_cours)
>>{
>>  rowsToShow = culmsName.contains(tbxValue).parent();
>>  rows.not(rowsToShow).each(function(){
>>  if(instance_fonction!=instance_en_cours)
>>  {
>>  return false;
>>  alert("interruption");
>>  }
>>  $(this).hide();
>>  });
>>  rowsToShow.each(function(){
>>  if(instance_fonction!=instance_en_cours)
>>  {
>>  return false;
>>  alert("interruption");
>>  }
>>  $(this).show();
>>  });
>>}
> 
> If I replace your Populate() with the following:
> 
> var oCells = null;
> 
> function Populate(instance_en_cours)
> {
>   if( oCells == null ) oCells = $("td.Name"); 
> 
>   var sCurrent = tbxValue;
>   
>   oCells.each(
>   function (){
>   var c = $(this), p = c.parent();
>   
>   p[0].style.display =
> (c.text().toLowerCase().indexOf(sCurrent) > - 1) ? "" : "none";
>   }
>   );
> }
> 
> I get really good performance. 
> 
> The biggest hit comes after the first key press when the oCells code runs.
> You could probably cache that at an earlier time. I tried doing it at
> $(document).ready() but it seems like you move those items during the
> window.onload event--so it makes the cache obsolete.
> 
> -Dan
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/jquery-is%27nt-very-effective-at-execution-tf3887482s15494.html#a11071830
Sent from the JQuery mailing list archive at Nabble.com.



[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Dan G. Switzer, II

>Works fine on my XP (the one that sits in the corner of my office), though
>I haven't used it extensively.  I can't believe that they would bother,
>personally.  But what is nice is that is applies smooth font so pages look
>like they do on the Mac :-)

I'm surprised it's taken them this long. The more they can get people to
rely on Apple products, the more likely they are to just buy a Mac next time
they buy a PC.

Personally, I think it's probably a bit late to enter the browser market. I
think it might be hard for them to gain leverage now that Firefox has a good
foothold.

Also, I've always hated Apple's UI on PC products. I hate that brushed metal
look--looks very 1990s to me.

-Dan



[jQuery] Re: Noob here, please help

2007-06-11 Thread Benjamin Sterling

Well, the style sheet on the example is also incorrect, if  you look at them
in both browsers, you will see that they have the same issue you are
referring to.

On 6/11/07, Terry B <[EMAIL PROTECTED]> wrote:



But (to my knowledge) I am using the same stylesheets as the
example...  yes?  no?

I thought I pretty much stripped it down to the bare minimum and the
style settings.





--
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com


[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread John Resig

The dev list is back up - I was able to get it back up and running
last week. You can find it here:
http://groups.google.com/group/jquery-dev

--John

On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:

it's release 0.1 ... more sample and code to follow. If we had a dev list, I
would have posted there first.

it started with fudging textNodes into a jQuery... it was messy, but
worked... I needed some more tools, so I cleaned it all up... and wrote the
plugin.

the acronym method is especially cute.


On 6/11/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
>
> Michael Stuhr wrote:
> >
> > Ⓙⓐⓚⓔ schrieb:
> >> a set of plugins to work with textNodes inside the dom.
> >>
> >>
> >>   textNodes() & replace() & split() & span() & acronyms() & more!
> >>
> >>
> >>
> >> get it here:
http://jqueryjs.googlecode.com/svn/trunk/plugins/textNodes/
> >>
> >> see it here:
http://cigar.dynalias.org/plugins/textNodes/textNodes.html
> Interesting stuff Jake. I'm missing some examples that are easier to
> grasp (while quickly scanning over the page). I didn't get yet what
> those are actually good for, though it feels like there is a lot.
>
> Maybe an interactive demo would help: Offer a textbox where a user can
> enter scripts to run and select or manipulate stuff on the page, with
> hints about which stuff to try out. And/or checkboxes to turn plugin
> options on/off.
>
> Pointing users to page source doesn't help much when you don't have any
> idea what to look for.
> > great idea, i ever wondered if there are more like this e.g. to
> > maipulate array etc.
> Have you checked these?
http://dev.jquery.com/browser/trunk/plugins/methods/
>
> --
> Jörn Zaefferer
>
> http://bassistance.de
>
>



--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Show hide div with cookie for remembering position -- possible solution

2007-06-11 Thread Matt Stith

Hi! Heres a couple things i might do

  $('a.show').hide();
  $('a.hide').click(function(){
  $('a.show').show();
  $('h2.title,.view-header-latest').add(this).hide(); //
Combine multiple
  $.cookie('hideShow","hide",{expires:365}); // Only need one
cookie.
  return false;
  });

  var hideShow = $.cookie('hideShow');
  if (hideShow=="hide") {
  $('a.hide,h2.title,.view-header-latest').hide(); // Combine
multiple
  $('a.show').show();
  };

  $('a.show').click(function(){
  $(this).hide();
  $('a.hide,h2.title,.view-header-latest').show();
  $.cookie("hideShow","show");
  return false;
  });
  if (hideShow=="show") {
  $('h2.title,.view-header-latest').show();
  };


On 6/11/07, bsuttis <[EMAIL PROTECTED]> wrote:



Hi all,

After searching for a solution to my subject and not finding it, I've
put together my own, which while working, feels rather long to me, and
as more of a designer/themer, I'm wondering if this is the optimal
code from a developer's point of view. I'm using the excellent jQuery
cookie plugin for the cookies.

Here's my jQuery code:


$('a.show').hide();

$('a.hide').click(function(){
$(this).hide();
$('a.show').show();
$('h2.title').hide();
$('.view-header-latest').hide();
$.cookie('hide', '.view-header-latest', {expires:365});
$.cookie('show', null);
return false;
});

var hide = $.cookie('hide');
if (hide) {
$('a.hide').hide();
$('a.show').show();
$('h2.title').hide();
$('.view-header-latest').hide();
};

$('a.show').click(function(){
$(this).hide();
$('a.hide').show();
$('h2.title').show();
$('.view-header-latest').show();
$.cookie('show', '.view-header-latest', {expires:365});
$.cookie('hide', null);
return false;
});

var show = $.cookie('show');
if (show) {
$('h2.title').show();
$('.view-header-latest').show();
};


What this does is uses a ul of 2 links, a show and a hide, to control
a div below it -- hiding the div as well as the opposite link while
doing so (ie. when you click the Hide li a, it hides too and presents
the Show li a). Any suggestions are appreciated, justr started getting
my hands dirty with jQuery this weekend. Thanks!




[jQuery] Re: jEditable on blank field

2007-06-11 Thread Erik Beeson

I figured it out. If a function is given for the "data" option, it will be
called when creating the input field, and the return from that will be used
to fill the field. So I just did this:

data: function(value) {
 return (value == ' ') ? '' : value;
}

Works great!

--Erik


On 6/11/07, Erik Beeson <[EMAIL PROTECTED]> wrote:


I'm using Mika Tuupola' great jEditable plugin to replace my homegrown
edit-in-place implementation. I've run into a snag when editing blank
fields. When I have a field (a div, not a form field) that's blank, I stick
a   in it so the div will still show up. In my implementation, I made
the input box empty if the field only had " " in it. jEditable doesn't
seem to do this, so the field starts out with " " in it, which isn't
ideal. With no onEditStart type event, I can't even fix it dynamically. My
work around has been to use the loadurl feature, but it seems silly to hit
the server for such a small thing.

Obviously it would be trivial for me to just edit the plugin, but I try to
avoid that as much as possible (makes upgrading a nightmare), and this seems
like a legitimate issue. If you try one of the jEditable demos and remove
all of the text and save it, you won't be able to select it again since the
field div has no size when it's empty.

Thoughts?

--Erik



[jQuery] Trouble updating divs with Ajax

2007-06-11 Thread Sami Tikka

I just can't get my head around this one. This Javascript function
gets called everytime user submits a query through a form. It loads a
Google Map, and also tries to update a div with results from Ajax
query. All this is done in the callback-function.

The GMap part works well, it loads some markers on the map, but the
div is updated with the same text everytime, regardless of the Ajax
query response. What am I doing wrong here?

function loadMap(query) {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("GM"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
var center = new GLatLng(0, 0);
map.setCenter(center, 1);

// Get search results from vtAPI
$.getJSON("api.php",
{ q: query },
function (json) {
// 100 is an error code
if (json != "100") {
// Create markers for 
the map
markers = json.geonames;
for (var i = 0; i < 
json.totalResultsCount; i++) {
 // add some Google Map markers here
}

// Update div
placeHtml = "";
placeHtml = placeHtml + 
"";
for (var i = 0; i < 
json.totalResultsCount; i++) {
var name = 
markers[i].name;
var country = 
markers[i].countryName;
var type = 
markers[i].fclName;
var lat = 
markers[i].lat;
var lng = 
markers[i].lng;
placeHtml = 
placeHtml + ""
+ name 
+ ", " + country + " (" + type + ")";
}
placeHtml = placeHtml + 
"";

// Insert into DOM

//$("#placeField").html(placeHtml);

} else {
alert ("Could not get 
any locations.");
}
}
);
}
}



[jQuery] Does append() work with application/xhtml+xml doc types?

2007-06-11 Thread [EMAIL PROTECTED]

Hi All,

I'm not able to get append() to work with this kind of doc type.

For example, in a XHTML 1.0 strict document, the following piece of
Javascript code works:

   var ns = "http://www.w3.org/1999/xhtml";;
   var d0=document.createElementNS(ns,"div");
   d0.setAttribute("id","mytest");
   d0.setAttribute("style", "width:50px;left:50px;top:
50px;position:absolute;");
   txt0 = document.createTextNode('MyTest');
   d0.appendChild(txt0);
   $('body').append(d0);

while the following jQuery code does not:

   $('body').append('MyTest');

whenever I try to reveal the created :

   $('#mytest').show(); // or
   $('[EMAIL PROTECTED]').show();

 it fails with the second code snippet, while it works with the first
code snippet.

It seems that the jQuery code does not create a valid , as I'm
unable to make it appear, nor I'm able to select it
(document.getElementById('mytest') returns null)

Is this a known limitation of jQuery - I tried w/ several modern
browsers w/ no luck -, and/or is there a workaround?

Thanks in advance,
Manu



[jQuery] Show hide div with cookie for remembering position -- possible solution

2007-06-11 Thread bsuttis

Hi all,

After searching for a solution to my subject and not finding it, I've
put together my own, which while working, feels rather long to me, and
as more of a designer/themer, I'm wondering if this is the optimal
code from a developer's point of view. I'm using the excellent jQuery
cookie plugin for the cookies.

Here's my jQuery code:


$('a.show').hide();

$('a.hide').click(function(){
$(this).hide();
$('a.show').show();
$('h2.title').hide();
$('.view-header-latest').hide();
$.cookie('hide', '.view-header-latest', {expires:365});
$.cookie('show', null);
return false;
});

var hide = $.cookie('hide');
if (hide) {
$('a.hide').hide();
$('a.show').show();
$('h2.title').hide();
$('.view-header-latest').hide();
};

$('a.show').click(function(){
$(this).hide();
$('a.hide').show();
$('h2.title').show();
$('.view-header-latest').show();
$.cookie('show', '.view-header-latest', {expires:365});
$.cookie('hide', null);
return false;
});

var show = $.cookie('show');
if (show) {
$('h2.title').show();
$('.view-header-latest').show();
};


What this does is uses a ul of 2 links, a show and a hide, to control
a div below it -- hiding the div as well as the opposite link while
doing so (ie. when you click the Hide li a, it hides too and presents
the Show li a). Any suggestions are appreciated, justr started getting
my hands dirty with jQuery this weekend. Thanks!



[jQuery] Re: jquery form plugin - double action (fadein) problem

2007-06-11 Thread slakoz

the problem exists in ie7, ie6, firefox2, opera.
any suggestions? please help.
regards
sk



[jQuery] more problem, more problem with autocomple

2007-06-11 Thread Sebastián V . Würtz
Why, if any1 can tellme, autocomplete post this with this encoded type


Headers
Response Headers
DateTue, 12 Jun 2007 00:25:22 GMT
ServerApache/1.3.33 (Win32) PHP/4.3.10
X-Powered-ByPHP/4.3.10
Connectionclose
Transfer-Encodingchunked
Content-Typetext/html; charset=iso-8859-1
Request Headers
Host127.0.0.1
User-AgentMozilla/5.0 (Windows; U; Windows NT 5.1; es-ES; rv:1.8.1.4) 
Gecko/20070515 Firefox/2.0.0.4
Accepttext/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Languagees-es,es;q=0.8,en-us;q=0.5,en;q=0.3
Accept-Encodinggzip,deflate
Accept-CharsetISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive300
Connectionclose
Content-Typeapplication/x-www-form-urlencoded
X-Requested-WithXMLHttpRequest
Content-Length837
Cookie
Pragmano-cache
Cache-Controlno-cache

Submit Enviar
ciudad Basavilbaso
ciudad_auto
email [EMAIL PROTECTED]
fecha 19/03/1978
firma á = ´ í = %acute; ñ --- Ã?
nombre sebastián
provincia Entre Ríos



What is this á???


--
Estoy usando la versión gratuita de SPAMfighter para usuarios privados.
Ha eliminado 2624 correos spam hasta la fecha.
Los usuarios de pago no tienen este mensaje en sus correos.
Obtenga SPAMfighter gratis aquí: http://www.spamfighter.com/les


[jQuery] jEditable on blank field

2007-06-11 Thread Erik Beeson

I'm using Mika Tuupola' great jEditable plugin to replace my homegrown
edit-in-place implementation. I've run into a snag when editing blank
fields. When I have a field (a div, not a form field) that's blank, I stick
a   in it so the div will still show up. In my implementation, I made
the input box empty if the field only had " " in it. jEditable doesn't
seem to do this, so the field starts out with " " in it, which isn't
ideal. With no onEditStart type event, I can't even fix it dynamically. My
work around has been to use the loadurl feature, but it seems silly to hit
the server for such a small thing.

Obviously it would be trivial for me to just edit the plugin, but I try to
avoid that as much as possible (makes upgrading a nightmare), and this seems
like a legitimate issue. If you try one of the jEditable demos and remove
all of the text and save it, you won't be able to select it again since the
field div has no size when it's empty.

Thoughts?

--Erik


[jQuery] Re: Jquery similar to twinhelix's supernote js

2007-06-11 Thread Karl Swedberg

Hi Ty,

Now that I've seen your example page, I don't think this is what  
you're looking for, but something you wrote in one of these posts  
inspired me to add an "activation" option to the clueTip plugin. So  
now, you can do this:

$('a.something').cluetip({activation: 'click'});

All  tags with class="something" will display a clueTip, but only  
if you click on them. Click again to remove the clueTip from view.


Maybe someone will find it useful anyway. Demo is here:
http://examples.learningjquery.com/62/

I hope to blog about this one soon, after I iron out a few more of  
the features.


--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com



On Jun 11, 2007, at 6:00 PM, [EMAIL PROTECTED] wrote:



I have a mockup with working menus now:
http://70.133.227.118/version1Bsubs.htm  (temp link)
Sorry for not mentioning originally it was to be in the main
navigation.
Hover in the main menu over schools, service/support, job opps to see
pretty much the functionality I'm after.
This is supernote code for these menu's.
Innerfades doing a little news fade in the div just under the header,
and will also provide a slideshow.
Any ideas of supernote could benefit from jquery, it's working great
and was easy for a hack monkey like me to get working.
ty

On Jun 11, 9:32 am, [EMAIL PROTECTED] wrote:

Thanks sozzi, might be what I'm looking for, I just want the div to
show on hover and hide when the original link or opening div is not
hovered.
Is it possible with the jqModal plugin? Also I might want the hover
resulting div to popover the exisiting hyperlink/menu items on it's
own dhtml layer.
Any examples of something like that. Having to X-out to close a menu
type item is cumbersome almost immediately.
I am talking about a sites main menu navigation system in a left hand
column.
thanks.

On Jun 10, 4:55 pm, sozzi <[EMAIL PROTECTED]> wrote:


From our description you are not exactly looking for a tool-tip


solution, more a sticky note solution. Have a look at:http:// 
dev.iceburg.net/jquery/jqModal/



jqModal example 3c should be doing what you are looking for.



Have a nice weekend.



On Jun 8, 3:11 pm, [EMAIL PROTECTED] wrote:



Still not really a clickable solution is it?
The sticky version where you have to X out and close it is not  
good at

all for a menu solution.
Maybe I'm stuck with twinHelix supernote.
Didn't get a chance to work on it. have to wait till monday.






[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ

I'm so old, my mac 512k is still in the closet, I still have a drawer full
of floppies! My PC is used for 1 thing, testing IE! It took Safari very
well.

On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote:


 I AM a Mac user and have been for more that 15 years now.  My PC is the
machine that sits in the corner b/c I only use it when I have to, and that's
for testing web apps only.  It's a laptop, so it doesn't have to get in my
way.  I just VNC to it from my Mac when I test. :-)


On 6/11/07 5:17 PM, "Erik Beeson" <[EMAIL PROTECTED]> wrote:

Sounds like you haven't switched yet. Some of us know the "PC in the
corner" scenario well :)

Seriously, I got a Mac because I needed it to test code on, and it's now
my only computer. I'm not a "mac user", I'm still a diehard "PC user", but
my brand of hardware has changed (same Intel processor though :) ). This Mac
is the best PC I've ever used. Windows boots so much faster on Parallels
than it ever did on PC hardware (like 15 seconds from launching parallels to
surfing the web in XP). Even going from powered off to XP is faster than
booting XP on my PC. My excuse was always one of cost, but I did the math,
and it really isn't much more expensive anymore. And it certainly isn't more
expensive if you factor in the increase in productivity and the time that
I've saved from not fighting with windows so much anymore.

Ok, . Back to work.

--Erik


On 6/11/07, *Chris W. Parker* <[EMAIL PROTECTED] > wrote:


On Monday, June 11, 2007 3:58 PM Shelane Enos <> said:

> Works fine on my XP (the one that sits in the corner of my office),
> though I haven't used it extensively.

Oh *that* computer? The one in the corner of your office? For minute
there I thought you were talking about a different computer...










--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: LiteBox in jQuery

2007-06-11 Thread Diego A.

Ok, now I get it!
Thanks guys ;-)

On May 31, 6:35 pm, Rhapidophyllum <[EMAIL PROTECTED]> wrote:
> One more thing--almost forgot.  Since photos can of course take a
> while to download, it's good to preload them.  I'm not sure if this
> is correct, but I think Lightbox 2 preloads 1 image, but Thickbox
> doesn't preload any.
>
> On May 31, 2007, at 11:53 AM, Rhapidophyllum wrote:
>
> > The other difference is that Thickbox resizes images to fit the
> > screen + buffer size.  While this is good in many situations, it
> > often isn't desirable for displaying photos, where you typically
> > want users to see the original photo quality.  Lightbox 2 has the
> > animated size transitions, and displays photos full size.  So
> > having something like Litebox which could be more suited to photo
> > galleries than Thickbox is a good thing to have.
>
> > On May 31, 2007, at 10:47 AM, Karl Swedberg wrote:
>
> >> On May 31, 2007, at 6:44 AM, Diego A. wrote:
>
> >>> As far as as can see, the jQuery Thickbox does everything the others
> >>> do. I use it here:
> >>>http://www.london-dry-cleaners.com/Laundry/
>
> >>> What am I missing?
>
> >> The default thickbox implementation doesn't have animated sizing
> >> of the images. They just pop up there with no transition from one
> >> to the next.
>
> >> --Karl
> >> _
> >> Karl Swedberg
> >>www.englishrules.com
> >>www.learningjquery.com



[jQuery] Re: Validate() and TinyMCE problem

2007-06-11 Thread Diego A.

Keep in mind I don't using TinyMCE, I use FCKEditor, but the principle
should be the same...

Basically, I write a small plugin that is responsible for
1. Creating an instance of the editor
2. Retrieving the HTML content from the editor and 'preparing' it for
form submission

For example...
$.FCK.Start(); // creates the editors
$.FCK.Update(); // updates the editors

At the moment, all my form submissions go through one function that
will always call the $.FCK.Update() method, but this could be
integrated with other plugins - in their configuration
For example...
if (options.FCKEditor) $.FCK.Update();

My implementation is very specific to my needs, but I can send you the
code and help you work on a more generic solution if you like.

Just let me know...
On Jun 7, 1:36 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> Diego A. wrote:
> > I don't use TinyMCE but I have a similar problem with FCKEditor and
> > Codepress (both JS based rich-text editors).
>
> > Usually, these RT editors update the contents of the field/textarea
> > element just before the form is submitted, which probably happens
> > after your validation.
>
> > I work around it by manually updating the value of the field/textarea
> > before I call the validation/submit the form.
>
> Could you describe in more detail how you do that? As this issue is
> quite likely to occur for others, I'd like to write examples showing how
> to integrate validation with those editors.
>
> --
> Jörn Zaefferer
>
> http://bassistance.de



[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Shelane Enos
I AM a Mac user and have been for more that 15 years now.  My PC is the
machine that sits in the corner b/c I only use it when I have to, and that¹s
for testing web apps only.  It¹s a laptop, so it doesn¹t have to get in my
way.  I just VNC to it from my Mac when I test. :-)


On 6/11/07 5:17 PM, "Erik Beeson" <[EMAIL PROTECTED]> wrote:

> Sounds like you haven't switched yet. Some of us know the "PC in the corner"
> scenario well :)
> 
> Seriously, I got a Mac because I needed it to test code on, and it's now my
> only computer. I'm not a "mac user", I'm still a diehard "PC user", but my
> brand of hardware has changed (same Intel processor though :) ). This Mac is
> the best PC I've ever used. Windows boots so much faster on Parallels than it
> ever did on PC hardware (like 15 seconds from launching parallels to surfing
> the web in XP). Even going from powered off to XP is faster than booting XP on
> my PC. My excuse was always one of cost, but I did the math, and it really
> isn't much more expensive anymore. And it certainly isn't more expensive if
> you factor in the increase in productivity and the time that I've saved from
> not fighting with windows so much anymore.
> 
> Ok, . Back to work.
> 
> --Erik
> 
> 
> On 6/11/07, Chris W. Parker <[EMAIL PROTECTED] > wrote:
>> 
>> On Monday, June 11, 2007 3:58 PM Shelane Enos <> said:
>> 
>>> > Works fine on my XP (the one that sits in the corner of my office),
>>> > though I haven't used it extensively.
>> 
>> Oh *that* computer? The one in the corner of your office? For minute
>> there I thought you were talking about a different computer...
> 
> 
> > 
> 




[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Erik Beeson

Sounds like you haven't switched yet. Some of us know the "PC in the corner"
scenario well :)

Seriously, I got a Mac because I needed it to test code on, and it's now my
only computer. I'm not a "mac user", I'm still a diehard "PC user", but my
brand of hardware has changed (same Intel processor though :) ). This Mac is
the best PC I've ever used. Windows boots so much faster on Parallels than
it ever did on PC hardware (like 15 seconds from launching parallels to
surfing the web in XP). Even going from powered off to XP is faster than
booting XP on my PC. My excuse was always one of cost, but I did the math,
and it really isn't much more expensive anymore. And it certainly isn't more
expensive if you factor in the increase in productivity and the time that
I've saved from not fighting with windows so much anymore.

Ok, . Back to work.

--Erik


On 6/11/07, Chris W. Parker <[EMAIL PROTECTED]> wrote:



On Monday, June 11, 2007 3:58 PM Shelane Enos <> said:

> Works fine on my XP (the one that sits in the corner of my office),
> though I haven't used it extensively.

Oh *that* computer? The one in the corner of your office? For minute
there I thought you were talking about a different computer...



[jQuery] Autcomplete function help

2007-06-11 Thread Sebastián V . Würtz
I need to make some things when a value isnt given back in the autocomplete, i 
mean, when the input loses the focus (blur), to make certain tasks, but does 
not exist a function in the class for it, where I can implement a species 
callback, maybe a onNoneFoundValue option?

onItemSelect and onFindValue dont work

thx
sebastián

--
Estoy usando la versión gratuita de SPAMfighter para usuarios privados.
Ha eliminado 2624 correos spam hasta la fecha.
Los usuarios de pago no tienen este mensaje en sus correos.
Obtenga SPAMfighter gratis aquí: http://www.spamfighter.com/les


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Chris W. Parker

On Monday, June 11, 2007 3:58 PM Shelane Enos <> said:

> Works fine on my XP (the one that sits in the corner of my office),
> though I haven't used it extensively.

Oh *that* computer? The one in the corner of your office? For minute
there I thought you were talking about a different computer...


[jQuery] Re: find is finding what?

2007-06-11 Thread Erik Beeson

jQuery always returns a jQuery object, regardless of whether it finds
anything or not. To see if anything has been selected, use last.length or
last.size() being greater than 0. This is by design so chaining won't break
if nothing is selected:

$('.someSelector').addClass('highlighted');

Will add the class to the selected stuff, if anything is selected.
Otherwise, it doesn't do anything.

--Erik


On 6/11/07, Trans <[EMAIL PROTECTED]> wrote:



Hi, I have the following:

var stack = $('#mydiv')
var last = stack.find('.card:last-child');

It doesn't make sense to me, b/c even if stack has no children, last
is being assigned to some object irregardless of the '.card' filter.
To work around I had to do this next:

if (last.is('.card')) {
  return last;
} else {
  return null;
};

What am I misunderstanding?

Thanks,
T.




[jQuery] Re: :contains - a bit more specific?

2007-06-11 Thread Erik Beeson

You could always use a filter function (untested):

$('div.commentfooter > span').filter(function() { return $(this).html() ==
'test'; }).append('class');

But you may find it easier to give the spans in question a class so you can
select them by class instead. SGML type markups seem to generally prefer
selection/manipulation by markup instead of by content.

--Erik

On 6/11/07, MrNase <[EMAIL PROTECTED]> wrote:



I have some layers, each of this layers has a span tag with a
username. Now, I want to append some code to each layer that has a
span which contains 'test'.

The code I tried is:

$("div.commentfooter[span:contains('test')]").append('class');


But that also appends 'class' to layers that have a span tag
containing 'testman' or 'tester'.

What do I need to change to only select those layers that have a span
tag that contains the word 'test' and only this word?

$("div.commentfooter[span:is('test')]").append('class');

doesn't work. :-(


---dominik




[jQuery] Re: :contains - a bit more specific?

2007-06-11 Thread Jean Nascimento


and that way?
$("div.commentfooter > span").contains('test').append('class');

On 6/11/07, MrNase <[EMAIL PROTECTED]> wrote:


I have some layers, each of this layers has a span tag with a
username. Now, I want to append some code to each layer that has a
span which contains 'test'.

The code I tried is:

$("div.commentfooter[span:contains('test')]").append('class');


But that also appends 'class' to layers that have a span tag
containing 'testman' or 'tester'.

What do I need to change to only select those layers that have a span
tag that contains the word 'test' and only this word?

$("div.commentfooter[span:is('test')]").append('class');

doesn't work. :-(


---dominik





--

[]´s Jean
www.suissa.info

  Ethereal Agency
www.etherealagency.com


[jQuery] find is finding what?

2007-06-11 Thread Trans

Hi, I have the following:

var stack = $('#mydiv')
var last = stack.find('.card:last-child');

It doesn't make sense to me, b/c even if stack has no children, last
is being assigned to some object irregardless of the '.card' filter.
To work around I had to do this next:

if (last.is('.card')) {
  return last;
} else {
  return null;
};

What am I misunderstanding?

Thanks,
T.



[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Bil Corry


Mike Alsup wrote on 6/11/2007 3:51 PM: 

I'm *really* excited to be able to run Safari on Windows, but has anyone
used this beta?  I've never seen anything render so slowly.  It's entirely
unusable on my XP box.


You should wait to test anything other than your own site with it until the 
security bugs are patched:

-
David Maynor  said...

   Yup, we are up to 6 bugs so far. 4 DoS and 2 remote execution. Not bad for 
an afternoon of idle fuzzing.

from:

-



- Bil




[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Shelane Enos
Works fine on my XP (the one that sits in the corner of my office), though I
haven¹t used it extensively.  I can¹t believe that they would bother,
personally.  But what is nice is that is applies smooth font so pages look
like they do on the Mac :-)


On 6/11/07 3:51 PM, "Mike Alsup" <[EMAIL PROTECTED]> wrote:

> I'm *really* excited to be able to run Safari on Windows, but has anyone used
> this beta?  I've never seen anything render so slowly.  It's entirely unusable
> on my XP box.
> 
> Mike
> 
> 
>> get Safari 3.0  for Windows (or os x) ! http://www.apple.com/safari/download/
>> 
> 
> 
> > 
> 




[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Mike Alsup

I'm *really* excited to be able to run Safari on Windows, but has anyone
used this beta?  I've never seen anything render so slowly.  It's entirely
unusable on my XP box.

Mike


get Safari 3.0  for Windows (or os x) !

http://www.apple.com/safari/download/




[jQuery] Re: Another Superfish release already? I'm calling it v1.2b

2007-06-11 Thread Joel Birch


On 12/06/2007, at 3:13 AM, Jörn Zaefferer wrote:
Thats cool, but not yet what I was looking for. I though of  
submenus that don't switch back at all until something else is  
hovered. That won't work without JS, but I find that acceptable.


--
Jörn Zaefferer


Hi Jörn,

I had a feeling that is what you meant - and actually, that is really  
easy to do. In fact, it was possible to get that behaviour even  
before I did this extra stuff, simply by setting the mouseout delay  
to 999. Then the menus "never" close until another is hovered.


I'll put together a demo of that when I get chance.

Joel Birch.

[jQuery] Re: Validate RC2 Preview: Remember The Milk Signup

2007-06-11 Thread Glen Lipka

http://en.wikipedia.org/wiki/International_Typographic_Style
Doesn't say much about it, but that is probably appropriate. :)

Basically it means designing with an invisible grid that everything lines up
to.

Glen

On 6/11/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:



Glen Lipka wrote:
> Exciting!
>
> Here would be my (humble) suggestions:
>
> 1. Required fields.  As a general rule, you should have a * asterisk
> to the left or right of the input field in a straight vertical line to
> indicate required.  Bold is ok, but it's not quite enough to let the
> user know.
> 2. When the user clicks submit, it puts all these words on the right
> in red.  Its sort of overwhelming.  Highlighting the input field is
> more important than red to the right.  Red to the right makes more
> sense as Inline errors.  Like email or password format.
Gonna work on that, though with a different example.
> 3. It still could use something at the top.  Like "You missed X
> field(s).  They have been highlighted below.  This implies you should
> scroll to the top of the form when submit with this kind of error.
> Think of a long form, where the user clicks submit and missed the very
> first field.  It would be offscreen otherwise.
That is something the error container should be good for.
> 4. When doing it right, the checkbox is a nice touch, but I would make
> it a little more subtle.  Additionally, use Swiss Design techniques.
> This means everything lines up.  So all the checks line up vertically.
I konw the Swiss army knife, but hadn't heard of "Swiss Design". Its
mostly a CSS/layout issue, but nonetheless important.
> 5.  As a general rule, I usually make form fields taller.  Users have
> terrible fine motor skills.  A big box is easier to input.  Check out
> the username and password fields in Wordpress.
> http://www.commadot.com/wp-admin
Yeah, those are hard to miss.
> 6. Onblur of the password field.  it's usually good practice to erase
> the field once you have a mismatch.  It's near impossible to try to
> fix it with the stars there.  Maybe that could be an option in the
> setup?  like errorClearInput: false; or whatever.
I don't like that clearing for other fields, but I agree that its good
for password fields. Thats the behaviour most users should be used to
anyway (eg. OS login, PIN numbers)
> 7. Looking at the setup.  I like the {0} to represent the number, but
> what if the number is 1.  Then it would say, Enter at least 1
> characters.  Singular vs. Plural.  It's a nitpick to be sure, but it's
> good grammar.  if you could say minLength: String.format("Enter at
> least {0} character{"s"}") or whatever...something to say greater than
> 1 gets this otherwise, default.  It's not critical, but its a nice to
> have.
Tricky, but not impossible. I see what I can do about it.
>
> I recently just launched a form that I tried, but couldn't use the
> validation plugin..
> Check out the form.  I actually have some issues with it, but its ok.
> http://app.marketo.com/signup/signup/code/standard
> 
Gonna take that as the base for the next example to work on.
> Notice the tooltip on the password.  I used hoverIntent.  Cool
> plugin.  That would be a kickass addition to your validator.
> Like have a "hint" declaration which would insert a questionmark with
> hover attached.  And if hoverIntent exists, then it could use that
> instead?
I really have to check how to build a nice tooltip plugin on top of
hoverIntent.
> Anyway, I hope this helps out some.  :)
Thanks again, Glen!

--
Jörn Zaefferer

http://bassistance.de




[jQuery] :contains - a bit more specific?

2007-06-11 Thread MrNase

I have some layers, each of this layers has a span tag with a
username. Now, I want to append some code to each layer that has a
span which contains 'test'.

The code I tried is:

$("div.commentfooter[span:contains('test')]").append('class');


But that also appends 'class' to layers that have a span tag
containing 'testman' or 'tester'.

What do I need to change to only select those layers that have a span
tag that contains the word 'test' and only this word?

$("div.commentfooter[span:is('test')]").append('class');

doesn't work. :-(


---dominik



[jQuery] Re: Jquery similar to twinhelix's supernote js

2007-06-11 Thread tzmedia

I have a mockup with working menus now:
http://70.133.227.118/version1Bsubs.htm  (temp link)
Sorry for not mentioning originally it was to be in the main
navigation.
Hover in the main menu over schools, service/support, job opps to see
pretty much the functionality I'm after.
This is supernote code for these menu's.
Innerfades doing a little news fade in the div just under the header,
and will also provide a slideshow.
Any ideas of supernote could benefit from jquery, it's working great
and was easy for a hack monkey like me to get working.
ty

On Jun 11, 9:32 am, [EMAIL PROTECTED] wrote:
> Thanks sozzi, might be what I'm looking for, I just want the div to
> show on hover and hide when the original link or opening div is not
> hovered.
> Is it possible with the jqModal plugin? Also I might want the hover
> resulting div to popover the exisiting hyperlink/menu items on it's
> own dhtml layer.
> Any examples of something like that. Having to X-out to close a menu
> type item is cumbersome almost immediately.
> I am talking about a sites main menu navigation system in a left hand
> column.
> thanks.
>
> On Jun 10, 4:55 pm, sozzi <[EMAIL PROTECTED]> wrote:
>
> > >From our description you are not exactly looking for a tool-tip
>
> > solution, more a sticky note solution. Have a look 
> > at:http://dev.iceburg.net/jquery/jqModal/
>
> > jqModal example 3c should be doing what you are looking for.
>
> > Have a nice weekend.
>
> > On Jun 8, 3:11 pm, [EMAIL PROTECTED] wrote:
>
> > > Still not really a clickable solution is it?
> > > The sticky version where you have to X out and close it is not good at
> > > all for a menu solution.
> > > Maybe I'm stuck with twinHelix supernote.
> > > Didn't get a chance to work on it. have to wait till monday.



[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ

it's release 0.1 ... more sample and code to follow. If we had a dev list, I
would have posted there first.

it started with fudging textNodes into a jQuery... it was messy, but
worked... I needed some more tools, so I cleaned it all up... and wrote the
plugin.

the acronym method is especially cute.

On 6/11/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:



Michael Stuhr wrote:
>
> Ⓙⓐⓚⓔ schrieb:
>> a set of plugins to work with textNodes inside the dom.
>>
>>
>>   textNodes() & replace() & split() & span() & acronyms() & more!
>>
>>
>>
>> get it here:
http://jqueryjs.googlecode.com/svn/trunk/plugins/textNodes/
>>
>> see it here: http://cigar.dynalias.org/plugins/textNodes/textNodes.html
Interesting stuff Jake. I'm missing some examples that are easier to
grasp (while quickly scanning over the page). I didn't get yet what
those are actually good for, though it feels like there is a lot.

Maybe an interactive demo would help: Offer a textbox where a user can
enter scripts to run and select or manipulate stuff on the page, with
hints about which stuff to try out. And/or checkboxes to turn plugin
options on/off.

Pointing users to page source doesn't help much when you don't have any
idea what to look for.
> great idea, i ever wondered if there are more like this e.g. to
> maipulate array etc.
Have you checked these?
http://dev.jquery.com/browser/trunk/plugins/methods/

--
Jörn Zaefferer

http://bassistance.de





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Noob here, please help

2007-06-11 Thread Terry B

But (to my knowledge) I am using the same stylesheets as the
example...  yes?  no?

I thought I pretty much stripped it down to the bare minimum and the
style settings.

On Jun 11, 4:44 pm, "Benjamin Sterling"
<[EMAIL PROTECTED]> wrote:
> Terry,
> It is a styling issue, the LI have a float on them and the DIV does not.
> (this is only happening in IE)
>
> Ben
>
> On 6/11/07, Terry B <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
>
> > Ok, so here is the page:
> >http://www.tcbader.com/conf/
>
> > Why us my content to the right and not below the tabs like the example
> > page here:
> >http://www.tcbader.com/conf/%5Fjs/jquery%2Dtabs/
>
> > What am I missing?
>
> > Hope this makes it to the list...
>
> --
> Benjamin Sterlinghttp://www.KenzoMedia.comhttp://www.KenzoHosting.com- Hide 
> quoted text -
>
> - Show quoted text -



[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Jörn Zaefferer


Michael Stuhr wrote:


Ⓙⓐⓚⓔ schrieb:

a set of plugins to work with textNodes inside the dom.


  textNodes() & replace() & split() & span() & acronyms() & more!



get it here: http://jqueryjs.googlecode.com/svn/trunk/plugins/textNodes/

see it here: http://cigar.dynalias.org/plugins/textNodes/textNodes.html
Interesting stuff Jake. I'm missing some examples that are easier to 
grasp (while quickly scanning over the page). I didn't get yet what 
those are actually good for, though it feels like there is a lot.


Maybe an interactive demo would help: Offer a textbox where a user can 
enter scripts to run and select or manipulate stuff on the page, with 
hints about which stuff to try out. And/or checkboxes to turn plugin 
options on/off.


Pointing users to page source doesn't help much when you don't have any 
idea what to look for.
great idea, i ever wondered if there are more like this e.g. to 
maipulate array etc.

Have you checked these? http://dev.jquery.com/browser/trunk/plugins/methods/

--
Jörn Zaefferer

http://bassistance.de



[jQuery] Re: Jquery presentation today

2007-06-11 Thread Chris W. Parker

On Monday, June 11, 2007 11:38 AM Shelane Enos <> said:

> I'm giving a presentation today on jquery to our new development
> group.  (my boss is now in charge of this group, previously under
> someone else here)  is there any update on when 1.1.3 might be
> released?  How close are we?  Just was hoping I could say something
> about it.  :-) 

Say this, "jQuery 1.1.3 is currently being tested and will be available
sometime in the future."

How's that? :P


[jQuery] Re: textNodes Plugin 0.1

2007-06-11 Thread Michael Stuhr


Ⓙⓐⓚⓔ schrieb:

a set of plugins to work with textNodes inside the dom.


  textNodes() & replace() & split() & span() & acronyms() & more!



get it here: http://jqueryjs.googlecode.com/svn/trunk/plugins/textNodes/

see it here: http://cigar.dynalias.org/plugins/textNodes/textNodes.html

great idea, i ever wondered if there are more like this e.g. to 
maipulate array etc.


micha


[jQuery] Re: Validate RC2 Preview: Remember The Milk Signup

2007-06-11 Thread Jörn Zaefferer


Glen Lipka wrote:

Exciting!

Here would be my (humble) suggestions:

1. Required fields.  As a general rule, you should have a * asterisk 
to the left or right of the input field in a straight vertical line to 
indicate required.  Bold is ok, but it's not quite enough to let the 
user know.
2. When the user clicks submit, it puts all these words on the right 
in red.  Its sort of overwhelming.  Highlighting the input field is 
more important than red to the right.  Red to the right makes more 
sense as Inline errors.  Like email or password format.

Gonna work on that, though with a different example.
3. It still could use something at the top.  Like "You missed X 
field(s).  They have been highlighted below.  This implies you should 
scroll to the top of the form when submit with this kind of error.  
Think of a long form, where the user clicks submit and missed the very 
first field.  It would be offscreen otherwise.

That is something the error container should be good for.
4. When doing it right, the checkbox is a nice touch, but I would make 
it a little more subtle.  Additionally, use Swiss Design techniques.  
This means everything lines up.  So all the checks line up vertically.
I konw the Swiss army knife, but hadn't heard of "Swiss Design". Its 
mostly a CSS/layout issue, but nonetheless important.
5.  As a general rule, I usually make form fields taller.  Users have 
terrible fine motor skills.  A big box is easier to input.  Check out 
the username and password fields in Wordpress.  
http://www.commadot.com/wp-admin

Yeah, those are hard to miss.
6. Onblur of the password field.  it's usually good practice to erase 
the field once you have a mismatch.  It's near impossible to try to 
fix it with the stars there.  Maybe that could be an option in the 
setup?  like errorClearInput: false; or whatever.
I don't like that clearing for other fields, but I agree that its good 
for password fields. Thats the behaviour most users should be used to 
anyway (eg. OS login, PIN numbers)
7. Looking at the setup.  I like the {0} to represent the number, but 
what if the number is 1.  Then it would say, Enter at least 1 
characters.  Singular vs. Plural.  It's a nitpick to be sure, but it's 
good grammar.  if you could say minLength: String.format("Enter at 
least {0} character{"s"}") or whatever...something to say greater than 
1 gets this otherwise, default.  It's not critical, but its a nice to 
have.

Tricky, but not impossible. I see what I can do about it.


I recently just launched a form that I tried, but couldn't use the 
validation plugin..

Check out the form.  I actually have some issues with it, but its ok.
http://app.marketo.com/signup/signup/code/standard 


Gonna take that as the base for the next example to work on.
Notice the tooltip on the password.  I used hoverIntent.  Cool 
plugin.  That would be a kickass addition to your validator.
Like have a "hint" declaration which would insert a questionmark with 
hover attached.  And if hoverIntent exists, then it could use that 
instead?
I really have to check how to build a nice tooltip plugin on top of 
hoverIntent.

Anyway, I hope this helps out some.  :)

Thanks again, Glen!

--
Jörn Zaefferer

http://bassistance.de



[jQuery] Re: IDEA: Plugin Registering

2007-06-11 Thread Ⓙⓐⓚⓔ

an idea would be to place an innocuous tag in our pages, thus making it
searchable by google and others

Powered by jQuery


On 6/11/07, Andy Matthews <[EMAIL PROTECTED]> wrote:


 It's a great idea. Could also allow for a dynamic listing of sites using
jQuery.

 --
*From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On
Behalf Of *Glen Lipka
*Sent:* Monday, June 11, 2007 4:11 PM
*To:* jquery-en@googlegroups.com
*Subject:* [jQuery] IDEA: Plugin Registering

I just had an idea, and thought Id share.

Imagine http://plugins.jquery.com
Besides listing all the plugins with ratings and everything (the usual)...
You could REGISTER your site as using a particular plugin.

So when there is a new version, I would receive an email saying, "Hey, you
use this plugin and you might want to upgrade. It has the following
enhancements."

Right now, I can't keep track of all the plugins I've used and what
version they are.
What is the status of the enhanced plugin site anyway?

Glen





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: IDEA: Plugin Registering

2007-06-11 Thread Andy Matthews
It's a great idea. Could also allow for a dynamic listing of sites using
jQuery.

  _  

From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Glen Lipka
Sent: Monday, June 11, 2007 4:11 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] IDEA: Plugin Registering


I just had an idea, and thought Id share.

Imagine http://plugins.jquery.com
Besides listing all the plugins with ratings and everything (the usual)...
You could REGISTER your site as using a particular plugin. 

So when there is a new version, I would receive an email saying, "Hey, you
use this plugin and you might want to upgrade. It has the following
enhancements."

Right now, I can't keep track of all the plugins I've used and what version
they are. 
What is the status of the enhanced plugin site anyway?

Glen



[jQuery] Re: IDEA: Plugin Registering

2007-06-11 Thread Ⓙⓐⓚⓔ

I keep my plugins on http://jqueryjs.googlecode.com/svn/trunk/plugins/  the
google repository for jQuery plugins.

On 6/11/07, Glen Lipka <[EMAIL PROTECTED]> wrote:


I just had an idea, and thought Id share.

Imagine http://plugins.jquery.com
Besides listing all the plugins with ratings and everything (the usual)...
You could REGISTER your site as using a particular plugin.

So when there is a new version, I would receive an email saying, "Hey, you
use this plugin and you might want to upgrade. It has the following
enhancements."

Right now, I can't keep track of all the plugins I've used and what
version they are.
What is the status of the enhanced plugin site anyway?

Glen





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: jquery is'nt very effective at execution

2007-06-11 Thread Dan G. Switzer, II

>function Populate(instance_en_cours)
>{
>   rowsToShow = culmsName.contains(tbxValue).parent();
>   rows.not(rowsToShow).each(function(){
>   if(instance_fonction!=instance_en_cours)
>   {
>   return false;
>   alert("interruption");
>   }
>   $(this).hide();
>   });
>   rowsToShow.each(function(){
>   if(instance_fonction!=instance_en_cours)
>   {
>   return false;
>   alert("interruption");
>   }
>   $(this).show();
>   });
>}

If I replace your Populate() with the following:

var oCells = null;

function Populate(instance_en_cours)
{
if( oCells == null ) oCells = $("td.Name"); 

var sCurrent = tbxValue;

oCells.each(
function (){
var c = $(this), p = c.parent();

p[0].style.display =
(c.text().toLowerCase().indexOf(sCurrent) > - 1) ? "" : "none";
}
);
}

I get really good performance. 

The biggest hit comes after the first key press when the oCells code runs.
You could probably cache that at an earlier time. I tried doing it at
$(document).ready() but it seems like you move those items during the
window.onload event--so it makes the cache obsolete.

-Dan



[jQuery] IDEA: Plugin Registering

2007-06-11 Thread Glen Lipka

I just had an idea, and thought Id share.

Imagine http://plugins.jquery.com
Besides listing all the plugins with ratings and everything (the usual)...
You could REGISTER your site as using a particular plugin.

So when there is a new version, I would receive an email saying, "Hey, you
use this plugin and you might want to upgrade. It has the following
enhancements."

Right now, I can't keep track of all the plugins I've used and what version
they are.
What is the status of the enhanced plugin site anyway?

Glen


[jQuery] Re: Validate RC2 Preview: Remember The Milk Signup

2007-06-11 Thread Glen Lipka

Exciting!

Here would be my (humble) suggestions:

1. Required fields.  As a general rule, you should have a * asterisk to the
left or right of the input field in a straight vertical line to indicate
required.  Bold is ok, but it's not quite enough to let the user know.
2. When the user clicks submit, it puts all these words on the right in
red.  Its sort of overwhelming.  Highlighting the input field is more
important than red to the right.  Red to the right makes more sense as
Inline errors.  Like email or password format.
3. It still could use something at the top.  Like "You missed X field(s).
They have been highlighted below.  This implies you should scroll to the top
of the form when submit with this kind of error.  Think of a long form,
where the user clicks submit and missed the very first field.  It would be
offscreen otherwise.
4. When doing it right, the checkbox is a nice touch, but I would make it a
little more subtle.  Additionally, use Swiss Design techniques.  This means
everything lines up.  So all the checks line up vertically.
5.  As a general rule, I usually make form fields taller.  Users have
terrible fine motor skills.  A big box is easier to input.  Check out the
username and password fields in Wordpress.  http://www.commadot.com/wp-admin
6. Onblur of the password field.  it's usually good practice to erase the
field once you have a mismatch.  It's near impossible to try to fix it with
the stars there.  Maybe that could be an option in the setup?  like
errorClearInput: false; or whatever.
7. Looking at the setup.  I like the {0} to represent the number, but what
if the number is 1.  Then it would say, Enter at least 1 characters.
Singular vs. Plural.  It's a nitpick to be sure, but it's good grammar.  if
you could say minLength: String.format("Enter at least {0} character{"s"}")
or whatever...something to say greater than 1 gets this otherwise, default.
It's not critical, but its a nice to have.

I recently just launched a form that I tried, but couldn't use the
validation plugin..
Check out the form.  I actually have some issues with it, but its ok.
http://app.marketo.com/signup/signup/code/standard

Notice the tooltip on the password.  I used hoverIntent.  Cool plugin.  That
would be a kickass addition to your validator.
Like have a "hint" declaration which would insert a questionmark with hover
attached.  And if hoverIntent exists, then it could use that instead?

Anyway, I hope this helps out some.  :)

Glen

On 6/11/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:



Hi,

I've uploaded a preview demo of the upcoming RC2 release of the
validation plugin. It features the signup form of Remember The Milk:
http://jquery.bassistance.de/validate-milk/demo-test/milk.html

The plugin handles keypress- and blur- for normal input elements and
change-events for radio/checkbox buttons. It tries to give feedback to
the user as early as possible, without disturbing with messages before
the user had a chance to enter the correct value. In other words: You
can tab through the fields without seeing a single error message pop up.
Once you start entering something in a field and blur, it gets
validated. If you go back and correct the entered value, it gets
validated on instant, showing you a success-icon. Radio and checkbox
buttons get validated once you change them (using keyboard or mouse).
Once an error message is displayed for a field, eg. when you click
submit and the field is invalid, the plugin updates the validation
status as soon as possible.

Give it a try, your feedback is priceless.

--
Jörn Zaefferer

http://bassistance.de




[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Andy Matthews

I see your point, but actually that many people probably DO use IE. Most PC 
users don't bother switching browsers because:

a) They don't know any better
b) They don't care
c) IE works just fine for them so why should they change.

-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris 
Scott
Sent: Monday, June 11, 2007 3:16 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Macrumors running live udpates of WWDC


Andy Matthews wrote:
> So 18 million INSTALLS of Safari, maybe. Just because a user has it on their 
> system, doesn't mean they'll use it.
> 
> Microsoft might as well say that 300 million people use MS Paint for their 
> graphics work. 

A more correct analogy would be saying 300 million people use IE...  Safari is 
the default browser for Mac like IE is for Windows.

> 
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] 
> On Behalf Of Jonathan Freeman
> Sent: Monday, June 11, 2007 2:36 PM
> To: jquery-en@googlegroups.com
> Subject: [jQuery] Re: Macrumors running live udpates of WWDC
> 
> 
> Actually, since Safari was introduced 3.5 years ago and Apple ships 
> around
> 5 million Macs/year now, 18 million Safari uses doesn't sound too far off.
> What's really going to be interesting is Apple has just expanded Safari to 
> two new platforms, Windows and iPhone. 
> 
> This should expand Safari market share dramatically.
> 
> 
> 
> 
> --- Andy Matthews <[EMAIL PROTECTED]> wrote:
> 
>> I have SERIOUS, SERIOUS doubts that there are 18 million people using 
>> Safari.
>>  
>> I doubt there are that many people using Macs to be perfectly honest.
>>
>>   _
>>
>> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]
>> On Behalf Of 
>> Sent: Monday, June 11, 2007 1:11 PM
>> To: jquery-en@googlegroups.com
>> Subject: [jQuery] Re: Macrumors running live udpates of WWDC
>>
>>
>> 11:09 am  Safari On WINDOWS  
>> 11:09 am  18 Million Safari users
>> Marketshare has climbed to 4.9%
>> IE has 78%, Firefox 15%, others 2%
>> We Dream Big 
>>
>>
>> On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote: 
>>
>> That's a feature they've previously announced that I'm looking 
>> forward to.
>>
>>
>> On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> 10:49 amusing safari to make widgets from web pages
>>
>>
>> Woo hoo!
>>
>> On 6/11/07, ?ⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>>
>>
>> thanks Shelane! I've been tuned in since 10 am!!!
>>
>>
>> On 6/11/07, Shelane Enos < [EMAIL PROTECTED]   
>>  > wrote:
>>
>>
>>
>> Macrumors.com     is 
>> running a "continuous" AJAX update of the keynote address of WWDC.  
>> No more "update in 60 seconds" countdown.
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> -- 
>> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ 
>>
> 
> 
> 
>
> Ready
>  for the edge of your seat? 
> Check out tonight's top picks on Yahoo! TV. 
> http://tv.yahoo.com/
> 
> 


--
Chris Scott
Adaptive Hosting Solutions, Inc.  | Blogzerk - blog hosting
http://www.adaptivehostingsolutions.com/  | http://www.blogzerk.com/




[jQuery] Re: Noob here, please help

2007-06-11 Thread Erik Beeson

Ah yes. Should say, I'm using FF2/Mac and it looks fine.

--Erik


On 6/11/07, Erik Beeson <[EMAIL PROTECTED]> wrote:


they look the same to me. I don't see what the problem is...

--Erik


On 6/11/07, Terry B <[EMAIL PROTECTED] > wrote:
>
>
> Ok, so here is the page:
> http://www.tcbader.com/conf/
>
> Why us my content to the right and not below the tabs like the example
> page here:
> http://www.tcbader.com/conf/%5Fjs/jquery%2Dtabs/
>
> What am I missing?
>
>
>
> Hope this makes it to the list...
>
>



[jQuery] Re: Noob here, please help

2007-06-11 Thread Benjamin Sterling

Terry,
It is a styling issue, the LI have a float on them and the DIV does not.
(this is only happening in IE)

Ben

On 6/11/07, Terry B <[EMAIL PROTECTED]> wrote:



Ok, so here is the page:
http://www.tcbader.com/conf/

Why us my content to the right and not below the tabs like the example
page here:
http://www.tcbader.com/conf/%5Fjs/jquery%2Dtabs/

What am I missing?



Hope this makes it to the list...





--
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com


[jQuery] Re: Noob here, please help

2007-06-11 Thread Erik Beeson

they look the same to me. I don't see what the problem is...

--Erik


On 6/11/07, Terry B <[EMAIL PROTECTED]> wrote:



Ok, so here is the page:
http://www.tcbader.com/conf/

Why us my content to the right and not below the tabs like the example
page here:
http://www.tcbader.com/conf/%5Fjs/jquery%2Dtabs/

What am I missing?



Hope this makes it to the list...




[jQuery] Noob here, please help

2007-06-11 Thread Terry B

Ok, so here is the page:
http://www.tcbader.com/conf/

Why us my content to the right and not below the tabs like the example
page here:
http://www.tcbader.com/conf/%5Fjs/jquery%2Dtabs/

What am I missing?



Hope this makes it to the list...



[jQuery] Re: Validate RC2 Preview: Remember The Milk Signup

2007-06-11 Thread Jörn Zaefferer


Mike Alsup wrote:


Is this a beta version of RC2?  :-)

Oh well. There is still much to learn :-)

--
Jörn Zaefferer

http://bassistance.de



[jQuery] Re: Weird IE behavior - need help

2007-06-11 Thread devsteff

thanks again,

the thing with the each-"scoped" functions was really new to me. I'm
really waiting for johns book :)
the reason for the jquery unlike class string manipulation was the
weired behavior and my thought that multiple css changes can produce
the slowdown effect. i will change it back to the addClass...
removeClass... functions soon, because my solution is only
unrecognizable nanosecs faster. the setTimeout trick did the real
magic...

stefan flick




[jQuery] textNodes Plugin 0.1

2007-06-11 Thread Ⓙⓐⓚⓔ

a set of plugins to work with textNodes inside the dom.

textNodes() & replace() & split() & span() & acronyms() & more!


get it here: http://jqueryjs.googlecode.com/svn/trunk/plugins/textNodes/

see it here: http://cigar.dynalias.org/plugins/textNodes/textNodes.html

--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Chris Scott


Andy Matthews wrote:

So 18 million INSTALLS of Safari, maybe. Just because a user has it on their 
system, doesn't mean they'll use it.

Microsoft might as well say that 300 million people use MS Paint for their graphics work. 


A more correct analogy would be saying 300 million people use IE...  Safari is 
the default browser for Mac like IE is for Windows.




-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Jonathan Freeman
Sent: Monday, June 11, 2007 2:36 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Macrumors running live udpates of WWDC


Actually, since Safari was introduced 3.5 years ago and Apple ships around
5 million Macs/year now, 18 million Safari uses doesn't sound too far off.
What's really going to be interesting is Apple has just expanded Safari to two new platforms, Windows and iPhone. 


This should expand Safari market share dramatically.




--- Andy Matthews <[EMAIL PROTECTED]> wrote:

I have SERIOUS, SERIOUS doubts that there are 18 million people using 
Safari.
 
I doubt there are that many people using Macs to be perfectly honest.


  _

From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] 
On Behalf Of 

Sent: Monday, June 11, 2007 1:11 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Macrumors running live udpates of WWDC


11:09 am Safari On WINDOWS  
11:09 am 18 Million Safari users
Marketshare has climbed to 4.9%
IE has 78%, Firefox 15%, others 2%
We Dream Big


On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote: 

That's a feature they've previously announced that I'm looking forward 
to.



On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:



10:49 amusing safari to make widgets from web pages


Woo hoo!

On 6/11/07, ?ⓐⓚⓔ <[EMAIL PROTECTED]> wrote:


thanks Shelane! I've been tuned in since 10 am!!!


On 6/11/07, Shelane Enos < [EMAIL PROTECTED]   
 > wrote:




Macrumors.com     is 
running a "continuous" AJAX update of the keynote address of WWDC.  No 
more "update in 60 seconds" countdown.














--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ 





   
Ready for the edge of your seat? 
Check out tonight's top picks on Yahoo! TV. 
http://tv.yahoo.com/






--
Chris Scott
Adaptive Hosting Solutions, Inc.  | Blogzerk - blog hosting
http://www.adaptivehostingsolutions.com/  | http://www.blogzerk.com/


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Andy Matthews

So 18 million INSTALLS of Safari, maybe. Just because a user has it on their 
system, doesn't mean they'll use it.

Microsoft might as well say that 300 million people use MS Paint for their 
graphics work. 

-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Jonathan Freeman
Sent: Monday, June 11, 2007 2:36 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Macrumors running live udpates of WWDC


Actually, since Safari was introduced 3.5 years ago and Apple ships around
5 million Macs/year now, 18 million Safari uses doesn't sound too far off.
What's really going to be interesting is Apple has just expanded Safari to two 
new platforms, Windows and iPhone. 

This should expand Safari market share dramatically.




--- Andy Matthews <[EMAIL PROTECTED]> wrote:

> I have SERIOUS, SERIOUS doubts that there are 18 million people using 
> Safari.
>  
> I doubt there are that many people using Macs to be perfectly honest.
> 
>   _
> 
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] 
> On Behalf Of 
> Sent: Monday, June 11, 2007 1:11 PM
> To: jquery-en@googlegroups.com
> Subject: [jQuery] Re: Macrumors running live udpates of WWDC
> 
> 
> 11:09 am   Safari On WINDOWS  
> 11:09 am   18 Million Safari users
> Marketshare has climbed to 4.9%
> IE has 78%, Firefox 15%, others 2%
> We Dream Big  
> 
> 
> On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote: 
> 
> That's a feature they've previously announced that I'm looking forward 
> to.
> 
> 
> On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> 
> 
> 
> 10:49 amusing safari to make widgets from web pages
> 
> 
> Woo hoo!
> 
> On 6/11/07, ?ⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> 
> 
> thanks Shelane! I've been tuned in since 10 am!!!
> 
> 
> On 6/11/07, Shelane Enos < [EMAIL PROTECTED]   
>  > wrote:
> 
> 
> 
> Macrumors.com     is 
> running a "continuous" AJAX update of the keynote address of WWDC.  No 
> more "update in 60 seconds" countdown.
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> -- 
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ 
> 



   
Ready
 for the edge of your seat? 
Check out tonight's top picks on Yahoo! TV. 
http://tv.yahoo.com/




[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Michael Stuhr


Jonathan Freeman schrieb:

This should expand Safari market share dramatically.
  


especially the iphone will boost it :-)

micha


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Michael Stuhr


Howard Jones schrieb:

Ⓙⓐⓚⓔ wrote:
  

did you try it on any jQuery pages?

Well, my own work-in-progress works as well as it does on Firefox. The 
Interface demos seem to be fine, and even pretty quick.
  
to me it's more an alpha. i surfed some more serious sites and it 
crashed repeatedly.

but it's definately better than swift now is.

but i wouldn't expect too much from this, since quicktime is so slow on 
windowze.

plus: it doesn't fit into the gui.
it will make debugging css and js a little bit easier.
just my 0.2€

micha



[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Jonathan Freeman

Actually, since Safari was introduced 3.5 years ago and Apple ships around
5 million Macs/year now, 18 million Safari uses doesn't sound too far off.
What's really going to be interesting is Apple has just expanded Safari to
two new platforms, Windows and iPhone. 

This should expand Safari market share dramatically.




--- Andy Matthews <[EMAIL PROTECTED]> wrote:

> I have SERIOUS, SERIOUS doubts that there are 18 million people using
> Safari.
>  
> I doubt there are that many people using Macs to be perfectly honest.
> 
>   _  
> 
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of 
> Sent: Monday, June 11, 2007 1:11 PM
> To: jquery-en@googlegroups.com
> Subject: [jQuery] Re: Macrumors running live udpates of WWDC
> 
> 
> 11:09 am   Safari On WINDOWS  
> 11:09 am   18 Million Safari users
> Marketshare has climbed to 4.9%
> IE has 78%, Firefox 15%, others 2%
> We Dream Big  
> 
> 
> On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote: 
> 
> That's a feature they've previously announced that I'm looking forward
> to.
> 
> 
> On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> 
> 
> 
> 10:49 amusing safari to make widgets from web pages
> 
> 
> Woo hoo!
> 
> On 6/11/07, ?ⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> 
> 
> thanks Shelane! I've been tuned in since 10 am!!!
> 
> 
> On 6/11/07, Shelane Enos < [EMAIL PROTECTED]  
>  > wrote:
> 
> 
> 
> Macrumors.com     is running
> a "continuous" AJAX update of the keynote address
> of WWDC.  No more "update in 60 seconds" countdown. 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> -- 
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ 
> 



   
Ready
 for the edge of your seat? 
Check out tonight's top picks on Yahoo! TV. 
http://tv.yahoo.com/


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Scott Trudeau

I run one site that gets ~ 55k uniques a day with a pretty good global
distribution and Safari is 1.2% and another site that gets only about
1000/day and is a more North American, and I get 2.5% Safari users, so
I agree 2-3% seems realistic.

On 6/11/07, Andy Matthews <[EMAIL PROTECTED]> wrote:



I usually merge two sources for browser stats:

http://www.thecounter.com/stats/2007/May/browser.php
puts Safari at around 3%

and
http://www.echoecho.com/ (right column, halfway down)
places Safari at around 1%

So I'd say that 2-3% might be realistic. But how many uniques make up that
list?




 
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Felix Geisendörfer
Sent: Monday, June 11, 2007 2:30 PM

To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Macrumors running live udpates of WWDC




I have SERIOUS, SERIOUS doubts that there are 18 million people using
Safari.

I doubt there are that many people using Macs to be perfectly honest.I also
think that FF numbers are underestimated and IE numbers overesimtated: See
http://www.w3schools.com/browsers/browsers_stats.asp

-- Felix

--
http://www.thinkingphp.org
http://www.fg-webdesign.de

Andy Matthews wrote:

I have SERIOUS, SERIOUS doubts that there are 18 million people using
Safari.

I doubt there are that many people using Macs to be perfectly honest.

 
 From: jquery-en@googlegroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of 
Sent: Monday, June 11, 2007 1:11 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Macrumors running live udpates of WWDC


11:09 amSafari On WINDOWS
11:09 am18 Million Safari users
Marketshare has climbed to 4.9%
IE has 78%, Firefox 15%, others 2%
We Dream Big


On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote:
>
> That's a feature they've previously announced that I'm looking forward to.
>
>
> On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
>
>
> 10:49 amusing safari to make widgets from web pages
>
>
> Woo hoo!
>
> On 6/11/07, ?ⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
> thanks Shelane! I've been tuned in since 10 am!!!
>
>
> On 6/11/07, Shelane Enos < [EMAIL PROTECTED]  > 
wrote:
>
>
> Macrumors.com   is running a "continuous" AJAX
update of the keynote address
> of WWDC.  No more "update in 60 seconds" countdown.
>
>
>
>
>



--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ



--
.|..
Scott Trudeau
scott.trudeau AT gmail DOT com
http://sstrudeau.com/
AIM: sodthestreets


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Andy Matthews
I usually merge two sources for browser stats:
 
http://www.thecounter.com/stats/2007/May/browser.php
puts Safari at around 3%
 
and
http://www.echoecho.com/ (right column, halfway down)
places Safari at around 1%
 
So I'd say that 2-3% might be realistic. But how many uniques make up that list?
 
 

  _  

From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Felix 
Geisendörfer
Sent: Monday, June 11, 2007 2:30 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Macrumors running live udpates of WWDC



I have SERIOUS, SERIOUS doubts that there are 18 million people using Safari.
 
I doubt there are that many people using Macs to be perfectly honest.

I also think that FF numbers are underestimated and IE numbers overesimtated: 
See http://www.w3schools.com/browsers/browsers_stats.asp

-- Felix

--
http://www.thinkingphp.org
http://www.fg-webdesign.de 


Andy Matthews wrote: 

I have SERIOUS, SERIOUS doubts that there are 18 million people using Safari.
 
I doubt there are that many people using Macs to be perfectly honest.

  _  

From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Sent: Monday, June 11, 2007 1:11 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Macrumors running live udpates of WWDC


11:09 am Safari On WINDOWS  
11:09 am 18 Million Safari users
Marketshare has climbed to 4.9%
IE has 78%, Firefox 15%, others 2%
We Dream Big


On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote: 

That's a feature they've previously announced that I'm looking forward to.


On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:



10:49 amusing safari to make widgets from web pages


Woo hoo!

On 6/11/07, ?ⓐⓚⓔ <[EMAIL PROTECTED]> wrote:


thanks Shelane! I've been tuned in since 10 am!!!


On 6/11/07, Shelane Enos < [EMAIL PROTECTED]   
 > wrote:



Macrumors.com     is running a 
"continuous" AJAX update of the keynote address
of WWDC.  No more "update in 60 seconds" countdown. 













-- 
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ 



[jQuery] Re: Another Superfish release already? I'm calling it v1.2b

2007-06-11 Thread Olivier Percebois-Garve


Its really nice even if you convinced me first that css is better for 
the job...

Anyway good to see how evolves the soon-best-menu-ever-possible.

Joel Birch wrote:


Hi all,

Due to overwhelming demand (well okay, two people) I have added 
another feature to the Superfish plugin that enables submenus to be 
open to show the path to the current page when the menu is in an idle 
state, ie. when the user is not hovering to reveal other submenus.


That did not sound overly simple, but the example should clear things up:
http://users.tpg.com.au/j_birch/plugins/superfish/all-horizontal-example/

Thanks to Jörn and Saphire for throwing down the gauntlet. ;)

Feedback is priceless and always hugely appreciated.

Joel Birch.

P.S. If I am doing something horribly wrong regarding version numbers 
for these releases, please somebody let me know :)




[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Felix Geisendörfer


I have SERIOUS, SERIOUS doubts that there are 18 million people using 
Safari.
 
I doubt there are that many people using Macs to be perfectly honest.
I also think that FF numbers are underestimated and IE numbers 
overesimtated: See http://www.w3schools.com/browsers/browsers_stats.asp


-- Felix
--
http://www.thinkingphp.org
http://www.fg-webdesign.de


Andy Matthews wrote:
I have SERIOUS, SERIOUS doubts that there are 18 million people using 
Safari.
 
I doubt there are that many people using Macs to be perfectly honest.



*From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] 
*On Behalf Of *

*Sent:* Monday, June 11, 2007 1:11 PM
*To:* jquery-en@googlegroups.com
*Subject:* [jQuery] Re: Macrumors running live udpates of WWDC

11:09 amSafari On WINDOWS
11:09 am18 Million Safari users
Marketshare has climbed to 4.9%
IE has 78%, Firefox 15%, others 2%
We Dream Big



On 6/11/07, *Shelane Enos* <[EMAIL PROTECTED] > 
wrote:


That's a feature they've previously announced that I'm looking
forward to.


On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]
> wrote:

10:49 amusing safari to make widgets from web pages


Woo hoo!

On 6/11/07, *?ⓐⓚⓔ* <[EMAIL PROTECTED]
> wrote:

thanks Shelane! I've been tuned in since 10 am!!!


On 6/11/07, *Shelane Enos* < [EMAIL PROTECTED]
  > wrote:


Macrumors.com 
  is running a "continuous" AJAX
update of the keynote address
of WWDC.  No more "update in 60 seconds" countdown.







--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ 


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Andy Matthews
I have SERIOUS, SERIOUS doubts that there are 18 million people using Safari.
 
I doubt there are that many people using Macs to be perfectly honest.

  _  

From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Sent: Monday, June 11, 2007 1:11 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Macrumors running live udpates of WWDC


11:09 am Safari On WINDOWS  
11:09 am 18 Million Safari users
Marketshare has climbed to 4.9%
IE has 78%, Firefox 15%, others 2%
We Dream Big


On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote: 

That's a feature they've previously announced that I'm looking forward to.


On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:



10:49 amusing safari to make widgets from web pages


Woo hoo!

On 6/11/07, ?ⓐⓚⓔ <[EMAIL PROTECTED]> wrote:


thanks Shelane! I've been tuned in since 10 am!!!


On 6/11/07, Shelane Enos < [EMAIL PROTECTED]   
 > wrote:



Macrumors.com     is running a 
"continuous" AJAX update of the keynote address
of WWDC.  No more "update in 60 seconds" countdown. 













-- 
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ 


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Howard Jones


Ⓙⓐⓚⓔ wrote:

did you try it on any jQuery pages?
Well, my own work-in-progress works as well as it does on Firefox. The 
Interface demos seem to be fine, and even pretty quick.


Howie


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ

did you try it on any jQuery pages?

On 6/11/07, Howard Jones <[EMAIL PROTECTED]> wrote:



Ⓙⓐⓚⓔ wrote:
> get Safari 3.0  for Windows (or os x) !
> http://www.apple.com/safari/download/
>
> It didn't install on my os x  but the windows version may work.
It installed just fine on Vista64, and then crashed while reading the
(just updated) Leopard preview page on Apple's own site. Definitely a
beta.





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Howard Jones


Ⓙⓐⓚⓔ wrote:
get Safari 3.0  for Windows (or os x) ! 
http://www.apple.com/safari/download/


It didn't install on my os x  but the windows version may work.
It installed just fine on Vista64, and then crashed while reading the 
(just updated) Leopard preview page on Apple's own site. Definitely a beta.


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ

get Safari 3.0  for Windows (or os x) !
http://www.apple.com/safari/download/

It didn't install on my os x  but the windows version may work.

On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:


11:17 amInnovative new way for developing for mobile applications.
based on iphone having full safari engine...gives us tremendous capability
web 2.0 + AJAX apps11:16 amHave been trying to come up with a solution to
letting developers write Apps for the iPhone and keep it secure.
We've come up with a very sweet solution11:16 amWhat about developers?11:15
am18 days from now11:15 am Ships June 29th - 6pm11:15 amONE LAST THING:
iPhone

THAT MEANS jQuery!!

On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
> 11:09 amSafari On WINDOWS11:09 am18 Million Safari users
> Marketshare has climbed to 4.9%
> IE has 78%, Firefox 15%, others 2%
> We Dream Big
>
> On 6/11/07, Shelane Enos < [EMAIL PROTECTED]> wrote:
> >
> >  That's a feature they've previously announced that I'm looking
> > forward to.
> >
> >
> > On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> >
> > 10:49 amusing safari to make widgets from web pages
> >
> >
> > Woo hoo!
> >
> > On 6/11/07, *?ⓐⓚⓔ* <[EMAIL PROTECTED]> wrote:
> >
> > thanks Shelane! I've been tuned in since 10 am!!!
> >
> >
> > On 6/11/07, *Shelane Enos* < [EMAIL PROTECTED] <[EMAIL 
PROTECTED]>> wrote:
> >
> >
> > Macrumors.com    is
> > running a "continuous" AJAX update of the keynote address
> > of WWDC.  No more "update in 60 seconds" countdown.
> >
> >
> >
> >
> >
>
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ




--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Jquery presentation today

2007-06-11 Thread Shelane Enos

I'm giving a presentation today on jquery to our new development group.  (my
boss is now in charge of this group, previously under someone else here)  is
there any update on when 1.1.3 might be released?  How close are we?  Just
was hoping I could say something about it.  :-)



[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ

11:17 amInnovative new way for developing for mobile applications.
based on iphone having full safari engine...gives us tremendous capability
web 2.0 + AJAX apps11:16 amHave been trying to come up with a solution to
letting developers write Apps for the iPhone and keep it secure.
We've come up with a very sweet solution11:16 amWhat about developers?11:15
am18 days from now11:15 amShips June 29th - 6pm11:15 amONE LAST THING:
iPhone

THAT MEANS jQuery!!

On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:


11:09 amSafari On WINDOWS11:09 am18 Million Safari users
Marketshare has climbed to 4.9%
IE has 78%, Firefox 15%, others 2%
We Dream Big

On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote:
>
>  That's a feature they've previously announced that I'm looking forward
> to.
>
>
> On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
>
> 10:49 amusing safari to make widgets from web pages
>
>
> Woo hoo!
>
> On 6/11/07, *?ⓐⓚⓔ* <[EMAIL PROTECTED]> wrote:
>
> thanks Shelane! I've been tuned in since 10 am!!!
>
>
> On 6/11/07, *Shelane Enos* < [EMAIL PROTECTED] <[EMAIL 
PROTECTED]>> wrote:
>
>
> Macrumors.com    is running
> a "continuous" AJAX update of the keynote address
> of WWDC.  No more "update in 60 seconds" countdown.
>
>
>
>
>


--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Validate RC2 Preview: Remember The Milk Signup

2007-06-11 Thread Mike Alsup


Is this a beta version of RC2?  :-)


I've uploaded a preview demo of the upcoming RC2 release of the
validation plugin. It features the signup form of Remember The Milk:
http://jquery.bassistance.de/validate-milk/demo-test/milk.html


[jQuery] Validate RC2 Preview: Remember The Milk Signup

2007-06-11 Thread Jörn Zaefferer


Hi,

I've uploaded a preview demo of the upcoming RC2 release of the 
validation plugin. It features the signup form of Remember The Milk: 
http://jquery.bassistance.de/validate-milk/demo-test/milk.html


The plugin handles keypress- and blur- for normal input elements and 
change-events for radio/checkbox buttons. It tries to give feedback to 
the user as early as possible, without disturbing with messages before 
the user had a chance to enter the correct value. In other words: You 
can tab through the fields without seeing a single error message pop up. 
Once you start entering something in a field and blur, it gets 
validated. If you go back and correct the entered value, it gets 
validated on instant, showing you a success-icon. Radio and checkbox 
buttons get validated once you change them (using keyboard or mouse). 
Once an error message is displayed for a field, eg. when you click 
submit and the field is invalid, the plugin updates the validation 
status as soon as possible.


Give it a try, your feedback is priceless.

--
Jörn Zaefferer

http://bassistance.de



[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ

11:09 amSafari On WINDOWS11:09 am18 Million Safari users
Marketshare has climbed to 4.9%
IE has 78%, Firefox 15%, others 2%
We Dream Big

On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote:


 That's a feature they've previously announced that I'm looking forward
to.


On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:

10:49 amusing safari to make widgets from web pages


Woo hoo!

On 6/11/07, *?ⓐⓚⓔ* <[EMAIL PROTECTED]> wrote:

thanks Shelane! I've been tuned in since 10 am!!!


On 6/11/07, *Shelane Enos* < [EMAIL PROTECTED] <[EMAIL 
PROTECTED]>> wrote:


Macrumors.com    is running a
"continuous" AJAX update of the keynote address
of WWDC.  No more "update in 60 seconds" countdown.








--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-06-11 Thread John Resig


Definitely Prototype - they're virtually everywhere.

--John

On 6/11/07, Chris W. Parker <[EMAIL PROTECTED]> wrote:


On Thursday, June 07, 2007 10:37 PM Roberto Ortelli <> said:

> New Logitech website is using jQuery too
> http://www.logitech.com

Anyone know which js library currently has the most high-profile sites
using their library? Although I'm almost a complete novice when it comes
to js it's pretty nice to see the jQuery project getting its feet in so
many doors (so to speak).



[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Shelane Enos
That’s a feature they’ve previously announced that I’m looking forward to.


On 6/11/07 10:52 AM, "?ⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:

> 10:49 amusing safari to make widgets from web pages
> 
> 
> Woo hoo!
> 
> On 6/11/07, ?ⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>> thanks Shelane! I've been tuned in since 10 am!!!
>> 
>> 
>> On 6/11/07, Shelane Enos < [EMAIL PROTECTED]  > 
>> wrote:
>>> 
>>> Macrumors.com   is running a "continuous" AJAX update
>>> of the keynote address
>>> of WWDC.  No more "update in 60 seconds" countdown.
>>> 
>> 
>> 




[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-06-11 Thread Chris W. Parker

On Thursday, June 07, 2007 10:37 PM Roberto Ortelli <> said:

> New Logitech website is using jQuery too
> http://www.logitech.com

Anyone know which js library currently has the most high-profile sites
using their library? Although I'm almost a complete novice when it comes
to js it's pretty nice to see the jQuery project getting its feet in so
many doors (so to speak).


[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ

10:49 amusing safari to make widgets from web pages

Woo hoo!

On 6/11/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:


thanks Shelane! I've been tuned in since 10 am!!!

On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote:
>
>
> Macrumors.com is running a "continuous" AJAX update of the keynote
> address
> of WWDC.  No more "update in 60 seconds" countdown.
>
>


--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-11 Thread oscar esp

I will try!!

On 10 jun, 19:53, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> keep me posted!! You may also need :
>
> ajaxSetup({contentType: "application/x-www-form-urlencoded; charset= charset you want to call it>"})
>
> On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
>
> > Oscar,
>
> > you can play with the jQuery from my branch (not released, and just to try
> > it... no guarantees!!)
>
> >http://jqueryjs.googlecode.com/svn/branches/jake-dev/dist/
>
> > On 6/10/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
> > > oops! that's on the googlegroups site.
>
> > > On 6/10/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED]> wrote:
>
> > > > $.pair = function(f,v) {return escape(f) + "=" + escape(v)};
>
> > > > and all your 'get' parameters use the new encoding.  If you care to
> > > > test... I'll save up a full version on the
>
> > > > escape is brain dead , as it won't work with the full range of UTF...
> > > > but the classic hi-ascii chars seem to work.. I tested with a ö (only)
>
> > > > On 6/10/07, oscar esp < [EMAIL PROTECTED]> wrote:
>
> > > > > You are the man :-P
>
> > > > > In order to use it. then I only need add the js ¿? or I need to
> > > > > call a extra code!!!
>
> > > > > On 10 jun, 18:44, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED] > wrote:
> > > > > > Hey Oscar, You were the reason I wrote this patch!!! Plus I had no
> > > > > beautiful
> > > > > > way to do non-utf encoding
>
> > > > > > A couple people came up with other solutions, but I like mine
> > > > > best, and it
> > > > > > shrinks the jQuery size a few bytes.
>
> > > > > > On 6/10/07, oscar esp <[EMAIL PROTECTED]> wrote:
>
> > > > > > > Hi I have a problem realted with charsets as you know.
>
> > > > > > > Could I use this code in order to fix my problem?
>
> > > > > > > On 10 jun, 06:00, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > > > > >http://dev.jquery.com/ticket/1289
>
> > > > > > > > On 6/9/07, Brandon Aaron < [EMAIL PROTECTED]> wrote:
>
> > > > > > > > > Be sure to add this to trac.
>
> > > > > > > > > --
> > > > > > > > > Brandon Aaron
>
> > > > > > > > > On 6/9/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED] > wrote:
>
> > > > > > > > > > I also added to the patch renaming the parameter 'xml' and
> > > > > sometimes
> > > > > > > 'r'
> > > > > > > > > > to 'xhr'. I think it makes it easier to read.
>
> > > > > > > > > >http://jqueryjs.googlecode.com/svn/branches/jake-dev/src/ajax/ajax.js
>
> > > > > > > > > > On 6/7/07, Mike Alsup < [EMAIL PROTECTED]> wrote:
>
> > > > > > > > > > > I like this patch. Jörn? Brandon? John? Anyone?
>
> > > > > > > > > > > > alternate encoding done cleanly...
>
> > > > > > >http://jqueryjs.googlecode.com/svn/branches/jake-dev/src/ajax/ajax.js
>
> > > > > > > > > > > > a small patch allows escape (or other) instead of
> > > > > > > encodeURIComponent
>
> > > > > > > > > > > > while localizing all calls to encodeURIComponent
> > > > > > > > > > > > this patch seems to make the packed size of jQuery
> > > > > even smaller.
>
> > > > > > > > > > > > $.pair is used in param (serialize) and can easily be
> > > > > overriden.
>
> > > > > > > > > > > > as in
> > > > > > > > > > > > $.pair = function(f,v) {return escape(f) + "=" +
> > > > > escape(v)};
> > > > > > > > > > > > $.ajax({
> > > > > > > > > > > > url: "/test.cgi",
> > > > > > > > > > > > data: {foo:'Jörn'},
> > > > > > > > > > > > success: function(){ console.log(arguments)}
> > > > > > > > > > > > })
>
> > > > > > > > > > --
> > > > > > > > > > Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ
>
> > > > > > > > --
> > > > > > > > Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ- Ocultar texto de la cita -
>
> > > > > > > > - Mostrar texto de la cita -
>
> > > > > > --
> > > > > > Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ- Ocultar texto de la cita -
>
> > > > > > - Mostrar texto de la cita -
>
> > > > --
> > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > --
> > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > --
> > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ- Ocultar texto de la cita -
>
> - Mostrar texto de la cita -



[jQuery] Re: Form with multipart/form-data not working

2007-06-11 Thread Mike Alsup


I see, thanks for the clarification.  You won't need to Form Plugin to
achieve that.  In your original post you never said what exactly
wasn't working.  Is there an error?  Is there a response?  Setting the
enctype on the form should not matter at all to the ajax methods since
they will ignore that setting.

Mike


On 6/11/07, Neil Merton <[EMAIL PROTECTED]> wrote:


I'll investigate the jQuery Form Plugin.

What I'm trying to achieve is just a simply AJAX action when the user
leaves the form field 'product_code' - the page 'checkproductcode.cfm'
will then be called and check that the value in 'product_code' is not
already in the database.

The rest of the form I would like it to submit as usual - there is no
need for the AJAX part.

I hope that this sheds some more light on what it is I'm after...

Many thanks.

On Jun 11, 6:00 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> Well that's a different story then.  You can't upload files via ajax.
> Use the form plugin for that functionality.  For details check 
out:http://www.malsup.com/jquery/form/
>
> Mike
>
> On 6/11/07, Neil Merton <[EMAIL PROTECTED]> wrote:
>
>
>
> > Thanks for the reply guys.
>
> > Mike - I'll have a look at the application/x-www-form-urlencoded
> > option, see what it does.
>
> > Michael - that is a simplified form - the actual form does contain a
> > file upload field.




[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Ⓙⓐⓚⓔ

thanks Shelane! I've been tuned in since 10 am!!!

On 6/11/07, Shelane Enos <[EMAIL PROTECTED]> wrote:



Macrumors.com is running a "continuous" AJAX update of the keynote address
of WWDC.  No more "update in 60 seconds" countdown.





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Form with multipart/form-data not working

2007-06-11 Thread Neil Merton

I'll investigate the jQuery Form Plugin.

What I'm trying to achieve is just a simply AJAX action when the user
leaves the form field 'product_code' - the page 'checkproductcode.cfm'
will then be called and check that the value in 'product_code' is not
already in the database.

The rest of the form I would like it to submit as usual - there is no
need for the AJAX part.

I hope that this sheds some more light on what it is I'm after...

Many thanks.

On Jun 11, 6:00 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> Well that's a different story then.  You can't upload files via ajax.
> Use the form plugin for that functionality.  For details check 
> out:http://www.malsup.com/jquery/form/
>
> Mike
>
> On 6/11/07, Neil Merton <[EMAIL PROTECTED]> wrote:
>
>
>
> > Thanks for the reply guys.
>
> > Mike - I'll have a look at the application/x-www-form-urlencoded
> > option, see what it does.
>
> > Michael - that is a simplified form - the actual form does contain a
> > file upload field.



[jQuery] Re: block plugin

2007-06-11 Thread oscar esp

I will try to attach it, however the problem is the :


test

I have delete this lines and then works fine...


On 11 jun, 18:20, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> Do you have a sample page?
>
> On 6/11/07, oscar esp <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > I have a strange behaviore:
>
> > I block a page but when I try to unblock does't work- Ocultar texto de 
> > la cita -
>
> - Mostrar texto de la cita -



[jQuery] Re: Another Superfish release already? I'm calling it v1.2b

2007-06-11 Thread Jörn Zaefferer


Joel Birch wrote:


Hi all,

Due to overwhelming demand (well okay, two people) I have added 
another feature to the Superfish plugin that enables submenus to be 
open to show the path to the current page when the menu is in an idle 
state, ie. when the user is not hovering to reveal other submenus.
Thats cool, but not yet what I was looking for. I though of submenus 
that don't switch back at all until something else is hovered. That 
won't work without JS, but I find that acceptable.


--
Jörn Zaefferer

http://bassistance.de



[jQuery] Macrumors running live udpates of WWDC

2007-06-11 Thread Shelane Enos

Macrumors.com is running a "continuous" AJAX update of the keynote address
of WWDC.  No more "update in 60 seconds" countdown.



[jQuery] Re: Form with multipart/form-data not working

2007-06-11 Thread Mike Alsup


Well that's a different story then.  You can't upload files via ajax.
Use the form plugin for that functionality.  For details check out:
http://www.malsup.com/jquery/form/

Mike


On 6/11/07, Neil Merton <[EMAIL PROTECTED]> wrote:


Thanks for the reply guys.

Mike - I'll have a look at the application/x-www-form-urlencoded
option, see what it does.

Michael - that is a simplified form - the actual form does contain a
file upload field.


[jQuery] Re: keycode javascript conversion to jquery

2007-06-11 Thread Andy Matthews

jQuery actually has built in key event handlers:
http://jquery.com/api/

Click the K link at the top 

-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of JimD
Sent: Monday, June 11, 2007 11:48 AM
To: jQuery (English)
Subject: [jQuery] keycode javascript conversion to jquery


Hi all,

I'm looking to convert an old javascript function to jquery. It simple
captured the keycode event 13 (user pressing enter on the keyboard) if the
user hits enter it initiates the action of clicking a button. I want to try
jquery because no matter what I do with regular javascript, the keycode
never get properly initiated in firefox. I was wondering if any of you could
suggest the best method using jquery so it works with both firefox 2 and
IE6/7

Current javascript:

/* for enter key to initiate simple search clicking enter key */ function
DoEnterSearch(buttonName,e)  {
var key;

var key = (e)? e.which: event.keyCode;

if (key == 13)
{
//Get the button the user wants to have clicked
var btn = document.getElementById(buttonName);
if (btn != null)
{ //If we find the button click it
btn.click();
if (event) event.keyCode = 0 ;
return false
}
}
}


Jquery implementation

$(document).ready(function() {
  $("#searchtxt").keydown(
 function(e){
   var key = e.charCode || e.keyCode || 0;
   $('buttonsmp').click();
 }
  );
});




  1   2   >