[jQuery] ajaxSubmit not defined

2007-02-24 Thread Agrawal, Ritesh

Hi,

I am trying to use ajaxSubmit form plugin..however, when i click on submit
button, the form is submitted without ajax...the problem is that the
javascript is not able to determine ajaxSubmit method. I also tried using
ajaxForm. but again, javascript is not able to find the method. 

I made sure that the form.js is attached to my web page and firebug is
showing form.js in the list of javascripts. 

Does anyone has a idea on how to go from here!!!

Regards,
Ritesh
-- 
View this message in context: 
http://www.nabble.com/ajaxSubmit-not-defined-tf3283071.html#a9132138
Sent from the JQuery mailing list archive at Nabble.com.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] jQuery.com site Question / Suggestion

2007-02-24 Thread Kenneth

Seeing as there's a number of quality API helpers and such for jQuery, I
was curious if there are any plans to have them added to the site, say
perhaps a new sub-section under documentation? I hope they aren't already
there or I will feel like a void(0) :p I know some of them have been covered
in the blog, however I think when people need help, the blog probably isn't
a candidate for answers.

What I am thinking of is things like:

* the jQueryHelp.exe from Sean O
* the PDF API from Ben Nadal
* the great reference sites (visualquery, api-draft, api-browser...I miss
any?)
* and probably tons more that I have missed

If it's simply a matter of editing the wiki I wouldn't mind doing it myself,
however I'd like feedback about such a thing first (thus this
email)would hate to put work on it if it's already being addressed.

p.s. once again, my apologies if I am overlooking something!
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jQuery.com site Question / Suggestion

2007-02-24 Thread Sam Collett
On 24/02/07, Kenneth [EMAIL PROTECTED] wrote:
 Seeing as there's a number of quality API helpers and such for jQuery, I
 was curious if there are any plans to have them added to the site, say
 perhaps a new sub-section under documentation? I hope they aren't already
 there or I will feel like a void(0) :p I know some of them have been covered
 in the blog, however I think when people need help, the blog probably isn't
 a candidate for answers.

 What I am thinking of is things like:

 * the jQueryHelp.exe from Sean O
 * the PDF API from Ben Nadal
 * the great reference sites (visualquery, api-draft, api-browser...I miss
 any?)
 * and probably tons more that I have missed

 If it's simply a matter of editing the wiki I wouldn't mind doing it myself,
 however I'd like feedback about such a thing first (thus this
 email)would hate to put work on it if it's already being addressed.

 p.s. once again, my apologies if I am overlooking something!

I have a list of sites that offer the documentation in various forms:
http://webdevel.blogspot.com/2007/01/jquery-documentation.html

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jqModal r7 IE6 Problems

2007-02-24 Thread Brice Burgess
Jake McGraw wrote:
 Unable to debug, but I was having another problem with IE6 and jqModal 
 with a much more complex document that pointed to hash[...].w as the 
 culprit.

Jake, I have tracked this bug down and it is a DOOZY! The fix is 
trivial... but is yet another testament to the bandwidth monster, 
Internet Explorer. I'd be interested to see a statistic on the 
percentage of web-bandwidth wasted on IE workarounds...

Anyhow, it appears that if an element loaded via an AJAX request is used 
as a jqModal 'trigger', it will throw an error in the hide/show 
function hs. What happens is that a for loop (which loops through an 
array attached to the trigger element named either jqmShow or 
jqmHide) returns indexOf as its value instead of the numeric serial.

Replace the hide/show/assign function @ line 67 [bottom] of jqModal.js 
with this;

var hs=function(w,e,y){var s=[];w.each(function(){s.push(this._jqm)});
 $(e).each(function(){if(this[y])$.extend(this[y],s);else{this[y]=s; 
$(this).click(function() {
 for(i in {jqmShow:1,jqmHide:1})for(s in this[i]){if(s == 
'indexOf')continue;hash[this[i][s]].w[i](this)};return false;});}});};

(( I have not public SVN, and can't send a patch as there's no 
attachments  I'm worried that column wrapping may mangle it if I 
include in email body ))

Also, I swear I can make sense of what's happening above :)

~ Brice

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] jQuery in server side language?

2007-02-24 Thread howard chen
Anyone think that it would be great to use jQuery in server side?

such as grab html from remote server, and process the html elements
using jQuery,

any idea?

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Incompatibilities with IE: Selection and Range Object (not jQuery related).

2007-02-24 Thread Abel Tamayo

I'm afraid I can't use jQuery here since I'm not working with DOM elements,
but with Range and Selection objects.

The difference is that, for example, this selection:

naked text span a span node /span p part of some other node ... p

could never be a DOM element or a jQuery element, but rather a range,
documentFragment or whatever.

So thanks for your help, Glen, but this time we have to work at document
level.

If someone comes up with a solution, it will be welcome.

Abel
On 2/24/07, Glen Lipka [EMAIL PROTECTED] wrote:


I meant the jQuery API.
http://www.jquery.com/api or
http://www.visualjquery.com or
http://jquery.bassistance.de/api-browser/

Actually, the one you want is wrap(), I think.  Unless I misunderstood.
http://jquery.bassistance.de/api-browser/#wrapString

Glen


On 2/23/07, Abel Tamayo [EMAIL PROTECTED] wrote:

 Could you send me a link to that API? I've been in the MSDN
 
http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/obj_textrange.aspsite
 but it's a mess: first you see a brief description of the object but no API,
 then you search for it and end up in a page where the navigation menu is in
 cyrilic, then you search again to find it the object seems to be integrated
 in C# and C++ and the windows API but again you can't find the actual
 interface...

 So yeah, I'll try with appendTo(), butI would be thankful if you cound
 send me a link to the API.

 And thanks ;)

 Abel

 On 2/23/07, Glen Lipka [EMAIL PROTECTED] wrote:
 
   Couldn't you use the appendTo() function?
  The API reference example looks just like what you are asking.
 
  Glen
 
 
  On 2/23/07, Abel Tamayo  [EMAIL PROTECTED] wrote:
 
   Hi all,
   I'm trying to create a plugin for jQuery that willlet you edit text
   in an iFrame like it was a text processor, but I need to work with ranges
   and selections and, while this is extremely easy with W3C compliant
   browsers, Adapting the work to IE is a real pain. What I need to know is 
the
   translation of this script:
  
   var r = window.getSelection().getRangeAt(0);
   var e = document.createElement (p);
   r.surroundContents(e);
  
   that changes this range:
  
   fooalink/a
  
   into this:
  
   pfooalink/a /p
  
   It seems like IE's special object TextRange does something
   similar, but it only selects text, not the HTML tags that conform the
   document.
  
   Any ideas? Thanks in advance.
  
   Abel.
  
   ___
   jQuery mailing list
   discuss@jquery.com
   http://jquery.com/discuss/
  
  
 
  ___
  jQuery mailing list
  discuss@jquery.com
  http://jquery.com/discuss/
 
 

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] jquery rocks

2007-02-24 Thread TE Gossman
hi all jquery newbie here,

   I'm working on a jquery accordion menu here:
http://70.133.226.219/dwtIndex.htm
It's the button menu on the left.
It's written just using John R's DL demo from the screencast tutorial,
with only one change that nothing is open initially.

I can't figure out how to make the button's toggle when clicked,
rather than if they are open, close and open again.
I've seen some code hints but can't quite figure out exactly how to
add those to the existing code.
Thanks for any help.

Another great idea that I think would receive some attention is if
somebody could code up something like this:
http://www.presidentielles.net/

 The accordion panels cycle in the main content area on the left, on a
timer like an automated slideshow. This one seems to be written using
moo.fx. Takes just a few seconds before they begin the slideUp on the
timer. Cool...

If there a forum/message board anywhere dedicated to jquery?
I think it makes more sense than a mailing list (said to the fans of
the mailing list). :)
The magazine idea was kind of a dud, great concept but there's only
ever been one excellent edition, a magazine is usually put out
regularly, a bit of a dissapointment :(

Anyways thanks to everyone for all of their contributions to everything jQuery!
tyler

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jQuery in server side language?

2007-02-24 Thread Dossy Shiobara
On 2007.02.24, howard chen [EMAIL PROTECTED] wrote:
 Anyone think that it would be great to use jQuery in server side?
 
 such as grab html from remote server, and process the html elements
 using jQuery,
 
 any idea?

It's my current goal with AOLserver's nsjsapi module, to get it to the
point where I can use jQuery server-side in AOLserver.

So, there's at least one person who thinks it would be great.  :-)

-- Dossy

-- 
Dossy Shiobara  | [EMAIL PROTECTED] | http://dossy.org/
Panoptic Computer Network   | http://panoptic.com/
  He realized the fastest way to change is to laugh at your own
folly -- then you can let go and quickly move on. (p. 70)

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jQuery in server side language?

2007-02-24 Thread Dragan Krstic

And how it would be used?

2007/2/24, Dossy Shiobara [EMAIL PROTECTED]:


On 2007.02.24, howard chen [EMAIL PROTECTED] wrote:
 Anyone think that it would be great to use jQuery in server side?

 such as grab html from remote server, and process the html elements
 using jQuery,

 any idea?

It's my current goal with AOLserver's nsjsapi module, to get it to the
point where I can use jQuery server-side in AOLserver.

So, there's at least one person who thinks it would be great.  :-)

-- Dossy

--
Dossy Shiobara  | [EMAIL PROTECTED] | http://dossy.org/
Panoptic Computer Network   | http://panoptic.com/
  He realized the fastest way to change is to laugh at your own
folly -- then you can let go and quickly move on. (p. 70)

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/





--
Dragan Krstić krdr
http://krdr.ebloggy.com/
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jQuery in server side language?

2007-02-24 Thread Tsz Ming WONG
it would be a great tool for html parsing,

e.g. how can I get the google search results by parsing the html? as
easy as that...


jQuery(a.l).each(function(){
console.debug( this.href );
});

-- 
tszming

On 2/24/07, Dragan Krstic [EMAIL PROTECTED] wrote:
 And how it would be used?

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jQuery in server side language?

2007-02-24 Thread Christof Donat
Hi,

 it would be a great tool for html parsing,

 e.g. how can I get the google search results by parsing the html? as
 easy as that...


 jQuery(a.l).each(function(){
   console.debug( this.href );
   });

Maybe this Link can help you:

http://en.wikipedia.org/wiki/Server-side_JavaScript

Christof

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jquery rocks

2007-02-24 Thread Seb Duggan
Hi Tyler,

One of the great things with jQuery is how quickly you'll find  
yourself giving other people advice...

What you're asking about is one of the first things I tried to do in  
jQuery, although your HTML structure is slightly different from mine  
(mine was simple nested unordered lists).

Anyway, the code you want is:

$('dt a').click(function(){
$(this).parent().next().siblings('dd:visible').slideUp('slow');
$(this).parent().next().slideToggle('slow');
return false;
});


What this does is:

The $(this).parent().next() bit locates the dd element connected to  
the clicked link; and therefore its dd siblings are all the other dd  
elements. So we close them if they're visible, and then toggle the  
one we clicked.


Seb


On 24 Feb 2007, at 13:38, TE Gossman wrote:

 hi all jquery newbie here,

I'm working on a jquery accordion menu here:
 http://70.133.226.219/dwtIndex.htm
 It's the button menu on the left.
 It's written just using John R's DL demo from the screencast tutorial,
 with only one change that nothing is open initially.

 I can't figure out how to make the button's toggle when clicked,
 rather than if they are open, close and open again.
 I've seen some code hints but can't quite figure out exactly how to
 add those to the existing code.
 Thanks for any help.

 Another great idea that I think would receive some attention is if
 somebody could code up something like this:
 http://www.presidentielles.net/

  The accordion panels cycle in the main content area on the left, on a
 timer like an automated slideshow. This one seems to be written using
 moo.fx. Takes just a few seconds before they begin the slideUp on the
 timer. Cool...

 If there a forum/message board anywhere dedicated to jquery?
 I think it makes more sense than a mailing list (said to the fans of
 the mailing list). :)
 The magazine idea was kind of a dud, great concept but there's only
 ever been one excellent edition, a magazine is usually put out
 regularly, a bit of a dissapointment :(

 Anyways thanks to everyone for all of their contributions to  
 everything jQuery!
 tyler

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] Toggling

2007-02-24 Thread poncjusz
Hi everyone I've html code: 

a href=... class=parentSomething/a
div class=subSomething/div
a href=...Something/a
a href=...Something/a
a href=... class=parentSomething/a
div class=subSomething/div
a href=...Something/a

and jquery code:
$(document).ready(function() {
$(.sub).hide();

$(.parent).click(function() {
$(.sub).toggle(400);
return false;
});
});

everything is ok until there is more then 1 link with parent class, when I 
click on link with parent class all divs with sub class slidingDown :/, what I 
should do? I want different behaviour: when I click on parent link only the 
nearest sub should slideDown.

Thanks in advance for help

Tomek

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jquery rocks

2007-02-24 Thread Rick Faircloth
Hi, TE... and welcome to jQuery!

I'm a relative newbie, also, but you'll find the community
very helpful ( I speak from experience!) and sociable.

Your accordion menu looks good and I certainly like your
idea about the auto-open/close accordion menu on the
presidentielles.net site.  I could really use that in an
advertising implementation on some of my sites.

I'm looking forward to more great work from you and
also a response to how the auto-open-close menu can
be created.

Rick

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of TE Gossman
Sent: Saturday, February 24, 2007 8:39 AM
To: discuss@jquery.com
Subject: [jQuery] jquery rocks

hi all jquery newbie here,

   I'm working on a jquery accordion menu here:
http://70.133.226.219/dwtIndex.htm
It's the button menu on the left.
It's written just using John R's DL demo from the screencast tutorial,
with only one change that nothing is open initially.

I can't figure out how to make the button's toggle when clicked,
rather than if they are open, close and open again.
I've seen some code hints but can't quite figure out exactly how to
add those to the existing code.
Thanks for any help.

Another great idea that I think would receive some attention is if
somebody could code up something like this:
http://www.presidentielles.net/

 The accordion panels cycle in the main content area on the left, on a
timer like an automated slideshow. This one seems to be written using
moo.fx. Takes just a few seconds before they begin the slideUp on the
timer. Cool...

If there a forum/message board anywhere dedicated to jquery?
I think it makes more sense than a mailing list (said to the fans of
the mailing list). :)
The magazine idea was kind of a dud, great concept but there's only
ever been one excellent edition, a magazine is usually put out
regularly, a bit of a dissapointment :(

Anyways thanks to everyone for all of their contributions to everything
jQuery!
tyler

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Toggling

2007-02-24 Thread Seb Duggan

This should do it (not tested):

$(.parent).click(function() {
$(this).next(.sub).toggle(400);
return false;
});



Seb



On 24 Feb 2007, at 15:39, poncjusz wrote:


Hi everyone I've html code:

a href=... class=parentSomething/a
div class=subSomething/div
a href=...Something/a
a href=...Something/a
a href=... class=parentSomething/a
div class=subSomething/div
a href=...Something/a

and jquery code:
$(document).ready(function() {
$(.sub).hide();

$(.parent).click(function() {
$(.sub).toggle(400);
return false;
});
});

everything is ok until there is more then 1 link with parent class,  
when I click on link with parent class all divs with sub class  
slidingDown :/, what I should do? I want different behaviour: when  
I click on parent link only the nearest sub should slideDown.


Thanks in advance for help

Tomek

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] What would be the best way to...?

2007-02-24 Thread Brian Miller
Thanks for the advice, I should have figured it was that easy.  Although,
you both didn't wrap this in a $() before using jQuery methods on it. 
:)

I'll use it this week.

- Brian


 $([EMAIL PROTECTED]).each(function(i){
 this.append(textarea name=' + this.attr(name) + ' + this.val()
 + /textarea).remove()
 })

 is a bit shorter... and throwing the remove at the end of the chain
 will save you a small fraction of a millisecond!

 I just took Glen's code and shortened it. I've used the append and
 remove before.

 On 2/23/07, Glen Lipka [EMAIL PROTECTED] wrote:
 I havent tested, but this is in the ballpark I think:
 $([EMAIL PROTECTED]).each(function(i){

 currentName = this.attr(name);
  currentValue = this.val();
  this.append(textarea name=' + currentName + ' + cuurentValue +
 /textarea;
  this.remove
 ();
 });
 So this would destroy the input and replace with textarea.
 There might be a better way, but I think this should work.

 Glen



 On 2/23/07, Brian Miller [EMAIL PROTECTED] wrote:
  I need to replace a whole lot of input type=text elements on a
 page
  with textarea elements.  (I have limited control over how the fields
 are
  generated.)  The contents of the form fields must remain - I just want
 to
  change the shape of the field to make it bigger and allow multiline
  input.



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] Something like drop down menu

2007-02-24 Thread sebastianw wurtz
i have a links something like a ul list with an anchor to a file, wich each 
one must showme a container with a div and the html content of this file (link)

ex.

ul
lia id=data01 href=tables/xyz.htmTitle One/a/li
lia id=data02 href=tables/bbbcck.htmTitle Two/a/li
lia id=data03 href=tables/2312312.htmTitle Three/a/li
/ul

when i click in each link i need to html showme the content of each html load 
via ajax something like that 

ul
lia id=data01 href=tables/xyz.htmh1Title One/h1/a--- 
look at the h1
pLorem Ipsum is simply dummy text of the printing and typesetting/p
pindustry. Lorem Ipsum has been the industry's standard dummy text 
ever/p
/li
lia id=data02 href=tables/bbbcck.htmTitle Two/a/li
lia id=data03 href=tables/2312312.htmTitle Three/a/li
/ul


And when i click in other link or in the same link, this content must disapear 
and show the next content, but the h1 label must dissapear too.

Any idea to make this script?








__ 
Preguntá. Respondé. Descubrí. 
Todo lo que querías saber, y lo que ni imaginabas, 
está en Yahoo! Respuestas (Beta). 
¡Probalo ya! 
http://www.yahoo.com.ar/respuestas 
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Rick Faircloth
Well. anyone know how to accomplish this in jQuery?
 
http://tinyurl.com/yubt54_spam
 
Rick
 
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Matt Stith
Sent: Monday, February 05, 2007 9:53 AM
To: jQuery Discussion.
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature
 
Really all that is is a image of a grid that stays aligned with the mouse,
and a higher resolution image that scrolls depending on the mouse position.
It doesnt even use jQuery.

Im going to call this one as a lame attempt at spamming this mailing list. 
On 2/5/07, Andy Matthews [EMAIL PROTECTED] wrote:
http://tinyurl.com/yubt54_spam http://tinyurl.com/yubt54 
 

 
Andy Matthews
Senior Coldfusion Developer

Office:  877.707.5467 x747
Direct:  615.627.9747
Fax:  615.467.6249
[EMAIL PROTECTED]
https://mail.google.com/mail?view=cmtf=0[EMAIL PROTECTED] 
www.dealerskins.com http://www.dealerskins.com/ 
 

___
jQuery mailing list
discuss@jquery.com
https://mail.google.com/mail?view=cmtf=0[EMAIL PROTECTED]  
http://jquery.com/discuss/


 


image001.png
Description: PNG image
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] Search Results Filtering

2007-02-24 Thread Alex Ezell
I have seen plugins like quickSearch and jSearch which search within a
resultset. They do a nice job.

What I am wondering is if anyone has done any work towards a
multi-criteria filter using sliders or something. I am thinking of
something like the search filters at Kayak.com:

http://www.kayak.com/s/flights.jsp?searchid=aS1IhssBOi8vUIpJHKwocompleted=true

where the user can move the price and times around. It also includes
non-sliders, but that's really interface. It seems the meat here is
filtering on a variety of criteria.

Just wondering if anyone has any insights into how to put something
like this together with jQuery.

/alex

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Christopher Jordan




that url
is busted.

Rick Faircloth wrote:

  
  
  
  
  
  

  
  
  Well
anyone know how to accomplish this in jQuery?
  
  http://tinyurl.com/yubt54_spam
  
  Rick
  
  
  From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Matt Stith
  Sent: Monday, February 05, 2007 9:53 AM
  To: jQuery Discussion.
  Subject: Re: [jQuery] KICK-BUTT _javascript_ based Zoom feature
  
  
  Really
all that is is a image of a grid that stays
aligned with the mouse, and a higher resolution image that scrolls
depending on
the mouse position. It doesnt even use jQuery.
  
Im going to call this one as a lame attempt at spamming this mailing
list. 
  
  On 2/5/07, Andy
Matthews [EMAIL PROTECTED]
wrote:
  
  
  http://tinyurl.com/yubt54_spam
  
  
  
  
  
  
  
  
  Andy
Matthews
  Senior
Coldfusion Developer
  
  Office: 877.707.5467 x747
Direct: 615.627.9747
Fax: 615.467.6249
  
  [EMAIL PROTECTED]
  www.dealerskins.com
  
  
  
  
  
  
___
jQuery mailing list
  discuss@jquery.com
  
  http://jquery.com/discuss/


  
  
  
  

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/
  


-- 
http://www.cjordan.us


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Search Results Filtering

2007-02-24 Thread Matt Kruse
 What I am wondering is if anyone has done any work towards a
 multi-criteria filter using sliders or something. I am thinking of
 something like the search filters at Kayak.com:
 http://www.kayak.com/s/flights.jsp?searchid=aS1IhssBOi8vUIpJHKwocomp
 leted=true

That's a pretty slick interface, but the sliders are really just a UI way to
select a filter range.
The issue is really two pieces - the core functionality of filtering by
multiple columns and criteria, and the UI to enable it.

I am nearing completion of my jquery.table.js plugin which will include
multi-column filtering ability. It can filter using either an exact value to
match, regular expression, or a custom function to call. It's built off my beta
version here: http://www.javascripttoolbox.com/lib/table/
This, together with some UI widgets, should allow you to do what you need. I
will certainly announce it here when it's ready and I'm seeking feedback.

I don't think it would be a good idea to have a single plugin that provides
both the core table functionality and various UI widgets for filter selection.
They seem best suited for different plugins, IMO.

Matt


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Michael Geary
This is untested code, but it's one way you could do it with jQuery:
 
$(function() {
location = $('[EMAIL PROTECTED]')attr('href').replace( /_spam$/, '' );
});


  _  

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Christopher Jordan
Sent: Saturday, February 24, 2007 10:32 AM
To: jQuery Discussion.
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature


that url is busted.

Rick Faircloth wrote: 

Well. anyone know how to accomplish this in jQuery?



http://tinyurl.com/yubt54_spam



Rick



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Matt Stith
Sent: Monday, February 05, 2007 9:53 AM
To: jQuery Discussion.
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature



Really all that is is a image of a grid that stays aligned with the mouse,
and a higher resolution image that scrolls depending on the mouse position.
It doesnt even use jQuery.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Rick Faircloth
Wow. that looks simple.
 
I guess the jQuery core has everything else needed to
produce the close-up effect?
 
Rick
 
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Michael Geary
Sent: Saturday, February 24, 2007 2:07 PM
To: 'jQuery Discussion.'
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature
 
This is untested code, but it's one way you could do it with jQuery:
 
$(function() {
location = $('[EMAIL PROTECTED]')attr('href').replace( /_spam$/, '' );
});
 

  _  

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Christopher Jordan
Sent: Saturday, February 24, 2007 10:32 AM
To: jQuery Discussion.
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature
that url is busted.

Rick Faircloth wrote: 
Well. anyone know how to accomplish this in jQuery?
http://tinyurl.com/yubt54_spam
Rick
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Matt Stith
Sent: Monday, February 05, 2007 9:53 AM
To: jQuery Discussion.
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature
Really all that is is a image of a grid that stays aligned with the mouse,
and a higher resolution image that scrolls depending on the mouse position.
It doesnt even use jQuery.
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Michael Geary
The actual code for the close-up effect would be different from that, but
the code I posted may help point toward the solution.

  _  

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Rick Faircloth
Sent: Saturday, February 24, 2007 11:20 AM
To: 'jQuery Discussion.'
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature


Wow. that looks simple.
 
I guess the jQuery core has everything else needed to
produce the close-up effect?
 
Rick
 
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Michael Geary
Sent: Saturday, February 24, 2007 2:07 PM
To: 'jQuery Discussion.'
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature
 
This is untested code, but it's one way you could do it with jQuery:
 
$(function() {
location = $('[EMAIL PROTECTED]')attr('href').replace( /_spam$/, '' );
});
 

  _  

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Christopher Jordan
Sent: Saturday, February 24, 2007 10:32 AM
To: jQuery Discussion.
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature
that url is busted.

Rick Faircloth wrote: 
Well. anyone know how to accomplish this in jQuery?
http://tinyurl.com/yubt54_spam
Rick
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Matt Stith
Sent: Monday, February 05, 2007 9:53 AM
To: jQuery Discussion.
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature
Really all that is is a image of a grid that stays aligned with the mouse,
and a higher resolution image that scrolls depending on the mouse position.
It doesnt even use jQuery.
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] Treeview - collapsing sub-branches

2007-02-24 Thread Bruce MacKay

Hi folks,

I'm suffering from a no doubt self-inflicted problem with the 
brilliant Treeview plugin - when I click a sub-branch to collapse it, 
it does collapse, but then immediately expands.


The plugin's example page 
(http://jquery.bassistance.de/treeview/treeviewDemo.html) has it (the 
plugin) working its magic on all ul tags in the body of the 
page.  For my use, I wanted to contain this behaviour to a particular 
div on my page (jqtree) so I altered the document ready code to read..


$(document).ready(function() {
$(#jqtree  ul:first).Treeview({ control: #treecontrol });
var lastTree = $(#jqtree  ul:last).Treeview({ speed: 
fast, collapsed: false });

});

Then within my page, I have used the following code...
div id=jqtreediv id=treecontrola href=#collapse all/a / 
a href=#expand all/a / a href=#toggle all/a/div

[snip]..the tree..[snip]
/div

The treecontrol links work fine - the whole tree collapses and 
expands as expected.  It is just the collapsing/expanding of 
sub-branches where my problem exists.  What mistake have I made ?



Thanks,

Bruce ___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jqModal r7 IE6 Problems

2007-02-24 Thread Jake McGraw

Brice and Brandon, thanks for the replies, I didn't mean to cause so much
trouble ;). Since this is something I'm doing to work, I'll make use of your
fixes on Monday and let you know how it goes. Thanks again!

- jake

On 2/24/07, Brice Burgess [EMAIL PROTECTED] wrote:


Jake McGraw wrote:
 Unable to debug, but I was having another problem with IE6 and jqModal
 with a much more complex document that pointed to hash[...].w as the
 culprit.

Jake, I have tracked this bug down and it is a DOOZY! The fix is
trivial... but is yet another testament to the bandwidth monster,
Internet Explorer. I'd be interested to see a statistic on the
percentage of web-bandwidth wasted on IE workarounds...

Anyhow, it appears that if an element loaded via an AJAX request is used
as a jqModal 'trigger', it will throw an error in the hide/show
function hs. What happens is that a for loop (which loops through an
array attached to the trigger element named either jqmShow or
jqmHide) returns indexOf as its value instead of the numeric serial.

Replace the hide/show/assign function @ line 67 [bottom] of jqModal.js
with this;

var hs=function(w,e,y){var s=[];w.each(function(){s.push(this._jqm)});
$(e).each(function(){if(this[y])$.extend(this[y],s);else{this[y]=s;
$(this).click(function() {
for(i in {jqmShow:1,jqmHide:1})for(s in this[i]){if(s ==
'indexOf')continue;hash[this[i][s]].w[i](this)};return false;});}});};

(( I have not public SVN, and can't send a patch as there's no
attachments  I'm worried that column wrapping may mangle it if I
include in email body ))

Also, I swear I can make sense of what's happening above :)

~ Brice

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jqModal r7 release!

2007-02-24 Thread Benjamin Sterling

Rick,
These are the plugins that I am using:

jqForm
jqDebug
jqHightlightFade
jqQuick (for dom)
the flash plugin
jqModal
jqMinMax (only using it once tho)
blockUI (will be getting switched out with a custom jqModal function)

And the rest of the code is mine.  This app is specific to a certain
audience, so they need to have js and css on to run this site.  I am using a
ton of $.ajax, which in all accounts could be switched to $.load or $get,
but i prefer $.ajax.  Feel free to take a look at the code and let me know
if you have any questions.

--
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Michael Geary
...and if I seem too much like a smart aleck today, my apologies! No offense
intended. I was just having some fun with the juxtaposition of that URL is
busted and anyone know how to accomplish this in jQuery... :-)


  _  

From: Michael Geary
The actual code for the close-up effect would be different from that, but
the code I posted may help point toward the solution.
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Ⓙⓐⓚⓔ
Hey... it's the weekend!

On 2/24/07, Michael Geary [EMAIL PROTECTED] wrote:


 ...and if I seem too much like a smart aleck today, my apologies! No offense
 intended. I was just having some fun with the juxtaposition of that URL is
 busted and anyone know how to accomplish this in jQuery... :-)


  
  From: Michael Geary

 The actual code for the close-up effect would be different from that, but
 the code I posted may help point toward the solution.
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/




-- 
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Rey Bango
Bah, we're used to it Mike. If you would've been out of line, you know I 
would've just jumped in and impaled you, jQuery-style. ;o)

Rey...

Michael Geary wrote:
 ...and if I seem too much like a smart aleck today, my apologies! No 
 offense intended. I was just having some fun with the juxtaposition of 
 that URL is busted and anyone know how to accomplish this in 
 jQuery... :-)
 
 
 *From:* Michael Geary
 The actual code for the close-up effect would be different from
 that, but the code I posted may help point toward the solution.
 
 
 
 
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/

-- 
BrightLight Development, LLC.
954-775- (o)
954-600-2726 (c)
[EMAIL PROTECTED]
http://www.iambright.com

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] dynamic input attribute

2007-02-24 Thread Josh Nathanson
Hey All,

Jquery noob here...

I would like to select an input checkbox field with a specific name, and 
check the box, but that name would have to be dynamic.  It seems like I need 
to do something like:
$([EMAIL PROTECTED]).attr( {checked: true });

...but I don't want the string myvariable, I want the value of myvariable. 
Is there a way to do that?

TIA,
Josh 


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] DateSelector (Kelvin Luck): whishlist

2007-02-24 Thread Stefan Kilp [sk-software]
Hi Kelvin,

- what about adding a Calender Week Number before first column? Like this:

Februar 2007
KW
529 30 31 1 2 3 4
65 6 7 8 9 10 11
712 ...
819 ...
926 ...


- and a download zip on your site with (source, css AND calendar.png)

- maybe you want to include german date infos

-- cut -- cut -- cut -- cut -- cut -- cut -- cut -- cut -- cut -- cut
  
var months = ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 
'Juli', 'August', 
'September', 'Oktober', 'November', 'Dezember'];
var days = ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 
'Freitag', 
'Samstag'];
var navLinks = {p:'Zurück', n:'Weiter', c:'Schliessen', b:'Datum 
wählen'};

 -- cut -- cut -- cut -- cut -- cut -- cut -- cut -- cut -- cut -- cut

- and a left and right arrow before month and year

  Februar 
  2007 

to skip a month/year back an forth

- a today button to jump back to current day

- i have two datepicker (dp1 and dp2) for selecting vacation time. 
how can i manage to change startdate of datePicker2 to be always greater then 
datePicker1. 
so no one can select an end date that is before the start date


so far about my wishlist :-) 

Best regards,
Stefan Kilp

--
Stefan Kilp
SK-Software, Entwicklung  Beratung

email: [EMAIL PROTECTED]

fon  : +49 6151 93344-0
fax  : +49 6151 93344-20
Herta-Mansbacher-Str. 98
64289 Darmstadt, Germany.
-


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] dynamic input attribute

2007-02-24 Thread Ⓙⓐⓚⓔ
try
$([EMAIL PROTECTED] + myvariable + ]).attr( {checked: true });


On 2/24/07, Josh Nathanson [EMAIL PROTECTED] wrote:
 Hey All,

 Jquery noob here...

 I would like to select an input checkbox field with a specific name, and
 check the box, but that name would have to be dynamic.  It seems like I need
 to do something like:
 $([EMAIL PROTECTED]).attr( {checked: true });

 ...but I don't want the string myvariable, I want the value of myvariable.
 Is there a way to do that?

 TIA,
 Josh


 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



-- 
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jqModal r7 IE6 Problems

2007-02-24 Thread Brice Burgess
Jake McGraw wrote:
 Brice and Brandon, thanks for the replies, I didn't mean to cause so 
 much trouble ;). Since this is something I'm doing to work, I'll make 
 use of your fixes on Monday and let you know how it goes. Thanks again!

 - jake
Jake,

  Hah.. no worries! I've actually updated the plugin with various IE 
fixes, and relased R8 ( http://dev.iceburg.net/jquery/jqModal ) -- so no 
need to worry about that patch.

  Included in R8 is the IE crash fix, the IE hash has no properties 
fix, and the IE6 iframe now covers the dialog element (vs. entire page) 
to allow interaction with the underlying page when overlay is disabled.

  Let me know if anything else comes up.

~ Brice


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Brice Burgess
Michael Geary wrote:
 This is untested code, but it's one way you could do it with jQuery:
  
 $(function() {
 location = $('[EMAIL PROTECTED]')attr('href').replace( /_spam$/, '' );
 });

Hah! :)
$(a).click(function(){window.location.href=this.href.replace(/_spam$/,'');});

WARNING: this is not a secret zoom function.

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jqModal r7 release!

2007-02-24 Thread Arne-Kolja Bachstein
Brice Burgess wrote:
   *  Overlays+IE6 iframe are now fixed positioned - support for ie6 
 quirks + standards mode
   
I love you! Just at the weekend I have to finalize a template using your
plugin you come around with the fix I was looking for! Works like a
charme now and centers correctly in IE 6+7!

Greetings

Arne-Kolja Bachstein
http://www.arnekolja.com

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Rick Faircloth
Ok... back to the original question, then.

Does *anyone* know how to do this in jQuery?

Rick


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Brice Burgess
Sent: Saturday, February 24, 2007 9:09 PM
To: jQuery Discussion.
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature

Michael Geary wrote:
 This is untested code, but it's one way you could do it with jQuery:
  
 $(function() {
 location = $('[EMAIL PROTECTED]')attr('href').replace( /_spam$/, '' );
 });

Hah! :)
$(a).click(function(){window.location.href=this.href.replace(/_spam$/,'');})
;

WARNING: this is not a secret zoom function.

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] ANNOUNCE: Alpha 2 of Ext 1.0 for jQuery is Available

2007-02-24 Thread Rey Bango
Guys,

Alpha 2 of Ext 1.0 for jQuery is now available for download. You can 
find out more details here:

http://www.yui-ext.com/forum/viewtopic.php?t=3084

and download Ext 1.0 for jQuery Alpha 2 here:

http://www.yui-ext.com/forum/viewtopic.php?t=2940

Rey...
-- 
BrightLight Development, LLC.
954-775- (o)
954-600-2726 (c)
[EMAIL PROTECTED]
http://www.iambright.com

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Rick Faircloth
Being able to move the mouse over a smaller image and have
a much larger image show a close-up of where the mouse is pointing...

Rick

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of 
Sent: Saturday, February 24, 2007 11:25 PM
To: jQuery Discussion.
Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature

Rick which part did you like?  it looks like a simple ajax app.

I bet the taconite plug in would do it with ease.

or just plain ajax.





___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread Ⓙⓐⓚⓔ
aha! I was clicking on the boots!  that's simple ajax.

the mouseover is a cool effect,
it's tracking the mouse location and showing the grid and cropping the
resultant picture. it is pretty neat! While any single part would be a
small project... I think throwing it all together would be a big
job...

sounds like a fun job!

On 2/24/07, Rick Faircloth [EMAIL PROTECTED] wrote:
 Being able to move the mouse over a smaller image and have
 a much larger image show a close-up of where the mouse is pointing...

 Rick

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of 
 Sent: Saturday, February 24, 2007 11:25 PM
 To: jQuery Discussion.
 Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature

 Rick which part did you like?  it looks like a simple ajax app.

 I bet the taconite plug in would do it with ease.

 or just plain ajax.





 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



-- 
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-24 Thread David
Hi Rick,

The jquery panview plugin does something similar to this. You may be
able to use it as a starting point to get what you want.

http://www.sevir.org/projects/storage/jpanview/index.html

Regards,

David

Rick Faircloth wrote:
 Being able to move the mouse over a smaller image and have
 a much larger image show a close-up of where the mouse is pointing...

 Rick

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of 
 Sent: Saturday, February 24, 2007 11:25 PM
 To: jQuery Discussion.
 Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature

 Rick which part did you like?  it looks like a simple ajax app.

 I bet the taconite plug in would do it with ease.

 or just plain ajax.





 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/



   
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jqModal r7 IE6 Problems

2007-02-24 Thread Brice Burgess
Brandon Aaron wrote:
 I would suggest requiring the bgiframe plugin instead of rolling your
 own solution. Just check to see if the bgiframe plugin has been
 included, call the .bgiframe() method on the div you want to have an
 iframe attached too and it will do the rest with borders and all. :)

 --
 Brandon Aaron
   

Brandon,

  I did think about that.. but ended up rolling my own. It's all in R9 
now, working smoothly as far as I've tested. IE6 sure proved to be a 
pain in the rear...

  I abstracted the IE6 iframe styling to CSS, as well as cut down on 
some unnecessary attributes/initializations. Thus far I've gone through 
great pains to cut down on code size  external requirements.

~ Brice

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] jQuery.com site Question / Suggestion

2007-02-24 Thread John Resig
Feel free to start a wiki page listing all of these - it's a great
idea! Once it's flushed out I can put it in to the layout so that
everyone can find it.

--John

On 2/24/07, Sam Collett [EMAIL PROTECTED] wrote:
 On 24/02/07, Kenneth [EMAIL PROTECTED] wrote:
  Seeing as there's a number of quality API helpers and such for jQuery, I
  was curious if there are any plans to have them added to the site, say
  perhaps a new sub-section under documentation? I hope they aren't already
  there or I will feel like a void(0) :p I know some of them have been covered
  in the blog, however I think when people need help, the blog probably isn't
  a candidate for answers.
 
  What I am thinking of is things like:
 
  * the jQueryHelp.exe from Sean O
  * the PDF API from Ben Nadal
  * the great reference sites (visualquery, api-draft, api-browser...I miss
  any?)
  * and probably tons more that I have missed
 
  If it's simply a matter of editing the wiki I wouldn't mind doing it myself,
  however I'd like feedback about such a thing first (thus this
  email)would hate to put work on it if it's already being addressed.
 
  p.s. once again, my apologies if I am overlooking something!

 I have a list of sites that offer the documentation in various forms:
 http://webdevel.blogspot.com/2007/01/jquery-documentation.html

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/