Re: [jQuery] position clearing ala Shaun Inman

2007-01-28 Thread Olaf Bosch
Alex Calara schrieb:
 Ah, here's the problem with that: it attaches a footer to the bottom  
 of the window, rather than to the bottom of the content. What I'm  
 looking for is repositioning an existing footer at the bottom of the  
 longest column in my #content section. There's three columns, and  
 each is positioned absolutely, so that their parent element  
 collapses. This is where my main problem comes in. I'm trying to see  
 if there's a non-floated layout where I can have the footer in the  
 correct place, just beneath the content.

Try, look at the demension-plugin, let them read the height of the colums.
The longest use to set the footer.

Set this variable in the Script to the footer:
top: LONGEST-COLUMN-HEIGHTpx;


in your CSS
#footer{
position:absolute;
left: /* what you will */;
width: /* what ever */;

}

-- 
Viele Grüße, Olaf

---
[EMAIL PROTECTED]
http://olaf-bosch.de
www.akitafreund.de
---

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


Re: [jQuery] IE 6 error when using thickbox on a secure connection

2007-01-28 Thread Klaus Hartl
[EMAIL PROTECTED] wrote:
 I have a site on an https://domain.com.  When I click on a
 thickbox-enabled link in IE, I get an error that says somethings are
 secure, some are not.  Is there a fix for this?  Known issue?
 
 Thanks,
 
 Ben

I think it is the src of the iframe that is used in IE to cover select 
boxes that is causing the warning...

Can you show us the source of your script?


-- Klaus

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


Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-28 Thread Jörn Zaefferer
Brice Burgess schrieb:
 I can likely examine the calls using .srcElement (IE)  and .target (not 
 IE)  passing the event data along.
jQuery normalizes the target property for IE and Safari. You can use 
target in every supported browser.

-- 
Jörn Zaefferer

http://bassistance.de


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


Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-28 Thread Jörn Zaefferer
Brice Burgess schrieb:
 I have updated the plugin with the following changes;
  
   + Added emulated fixed position for IE7 (via stylesheet)
   + Update pageHeight function to return full height regardless
   of height setting on body (typically 100%..., upsets .clientHeight)
   + Added a full height IFRAME to overlay creation to prevent IE activeX 
 bleed
   + Optimized code -- Still the same 3.2k!

 Plugin URL: http://localhost/eclipse/jqModal/
   
Could you please post a link to some online resource? :-)

-- 
Jörn Zaefferer

http://bassistance.de


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


Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-28 Thread Mike Alsup
   It would be nice to allow clicks  presses ONLY if originating from
 within the modal window. Perhaps this could be accomplished by examining
 focus  parent? Would this block users from typing in the browser's
 address bar? The goal would be to allow a form within a modal window to
 be populated  submitted using keyboard or mouse, and to block
 everything outside of the *currently active* modal.

   I don't think it will be possible to prevent the user from using tabs
 to access links and inputs/buttons in the background page, but the block
 code should intercept the call (enter, key press) to execute or
 populate these links/inputs.

Bruce,

Good points.  You're right of course, key/mouse events should only be
blocked for the underlying content.  I'll try to fix that in blockUI
(I found another bug in there too, so thanks for making me take
another look at it.)

Another good resource to look at is Gavin's modalContent plugin.
Looks like his demo page isn't working right now but he did a good job
on that code and has some cool animation support.

Remember that you can use 'z-index' in a call to jQuery's css method.  :-)

Regarding opacity in Opera, it's fully supported in Opera 9.  Did you
try applying it to the IFrame?

Another nice feature to add would be to focus the first visible input
in the modal content.  Even better would be to restore the previously
focused element when the modal dialog is dismissed, but I'm not sure
how to do that.

Keep up the good work.

Mike

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


Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-28 Thread Mike Alsup
 Bruce,

Ugh.  I meant Brice.  Sorry!

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


[jQuery] jQuery Tools: API Browser

2007-01-28 Thread Jörn Zaefferer
According to the feedback I got via IRC and on this list, there are 
several people using my API browser (so far known as api-draft).


This feedback gave me the motivation to further improve the browser 
(including a few more plugins), and to create an official release.


The time has come: *http://jquery.bassistance.de/api-browser/*

My own tests yielded good results in Firefox 2.0, Opera 9 and IE6: The 
browser works quite consistent with and without JavaScript. Of course it 
is recommended to view it with JavaScript, because you get:


   * Tabbed navigation
   * Treeview on categories
   * Quicksearch on both navigation and main content
   * code highlighting for both HTML and JavaScript snippets
   * a vertical splitter that allows you to resize
 navigation/content panes
   * highlighting selected methods in the content
   * styled tooltips for method arguments

Without JavaScript, the browser still provides both categorized and 
alphabetic navigation, and to a certain extend, bookmarks.


The issue with bookmarks is this: The first time you visit the browser, 
you can select any method and the location hash is properly updated. 
Once you bookmark the location, including the hash, and return to the 
site, it jumps to the correct method, but does not update the hash 
anymore on further navigations. This occurs in both IE and FF, Opera 
simply fails to jump to the correct method in the first place, but 
updates the hash on following clicks.


If you like the tool and want to use it in your daily jQuery 
development: there is a download link at the header of the browser.


Of course your feedback is still appreciated!

--
Jörn Zaefferer

http://bassistance.de

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


Re: [jQuery] Flickering when using slideToggle in Firefox

2007-01-28 Thread spl1nter

Cheers for the replies.

Jake, that tip was very helpful for reducing the volume of code cheers!

Unfortunately using '#[something]' instead of '' doesn't seem to have helped
with the flickering :(


Ⓙⓐⓚⓔ wrote:
 
 # vs  !! definitely causes problems!
 
 Might I also suggest you code href=#coding and in your click hander
 you just use $(this.hash) to toggle and slide! Your code can be cut
 down 80%. And it can me made to work in javascript disabled browsers
 (if you put an   in the div!)!
 
 On 1/27/07, Gerry Danen [EMAIL PROTECTED] wrote:
 Hmm... I'm a novice to jQuery also and have just implemented a sliding
 menu on my blog, See http://blog.danen.org .

 I noticed a difference in behaviour of href=# vs href=

 You may want to check that out.
 

-- 
View this message in context: 
http://www.nabble.com/Flickering-when-using-slideToggle-in-Firefox-tf3129768.html#a8676061
Sent from the JQuery mailing list archive at Nabble.com.


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


[jQuery] Plugins Database: Rating Comments

2007-01-28 Thread Lick

Hello everyone,

As the plugins page is continuing to grow every day, I thought it might be
nice to start organizing them in a more comfortable manner. Features that
should not be delayed any longer are probably a Rating, a Comment-gallery
and links to Related Plugins. And of course the usual stuff like author,
homepage, usage details and example/demo. 

Good idea, yes/no?

- Lick
-- 
View this message in context: 
http://www.nabble.com/Plugins-Database%3A-Rating---Comments-tf3128015.html#a8666879
Sent from the JQuery mailing list archive at Nabble.com.


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


Re: [jQuery] position clearing ala Shaun Inman

2007-01-28 Thread Alex Calara
 On Jan 28, 2007, at 2:43 AM, Olaf Bosch wrote:
 Try, look at the demension-plugin, let them read the height of the  
 colums.
 The longest use to set the footer.

 Set this variable in the Script to the footer:
 top: LONGEST-COLUMN-HEIGHTpx;


 in your CSS
 #footer{
 position:absolute;
 left: /* what you will */;
 width: /* what ever */;
 
 }


I don't think you read the explanation of my problem, and instead you  
read my reply to Jake (which was explaining why his solution wouldn't  
work for me). Look up a couple posts, and you'll see my full  
explanation.

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


Re: [jQuery] Plugins Database: Rating Comments

2007-01-28 Thread Gerry Danen
Excellent idea.

If at all possible, be able to download the source right there,
without the need to go to the author's site. While there is nothing
wrong with a visit to the author's site, it should not be for the
purpose of demos or downloads. Well, demos maybe.

While I don't like the ads and popup windows on PHP Classes -
http://www.phpclasses.org/ - I do like the way the code repository is
organized. Perhaps something to consider?

Gerry

On 1/27/07, Lick [EMAIL PROTECTED] wrote:

 Hello everyone,

 As the plugins page is continuing to grow every day, I thought it might be
 nice to start organizing them in a more comfortable manner. Features that
 should not be delayed any longer are probably a Rating, a Comment-gallery
 and links to Related Plugins. And of course the usual stuff like author,
 homepage, usage details and example/demo.

 Good idea, yes/no?

 - Lick

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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Mike Alsup
  The time has come:
 http://jquery.bassistance.de/api-browser/

Fantastic, Jörn.  This is a really great tool.
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Plugins Database: Rating Comments

2007-01-28 Thread John Resig
We've already started development on this - it's been a long time
coming. If you're interested in following the work that the web team
is doing, feel free to stop by the Web Team mailing list:
http://jquery.com/mailman/listinfo/web_jquery.com

--John

On 1/27/07, Lick [EMAIL PROTECTED] wrote:

 Hello everyone,

 As the plugins page is continuing to grow every day, I thought it might be
 nice to start organizing them in a more comfortable manner. Features that
 should not be delayed any longer are probably a Rating, a Comment-gallery
 and links to Related Plugins. And of course the usual stuff like author,
 homepage, usage details and example/demo.

 Good idea, yes/no?

 - Lick
 --
 View this message in context: 
 http://www.nabble.com/Plugins-Database%3A-Rating---Comments-tf3128015.html#a8666879
 Sent from the JQuery mailing list archive at Nabble.com.


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


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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Brandon Aaron
Love it! It is going to get a lot of use. Great job.

--
Brandon Aaron

On 1/28/07, Jörn Zaefferer [EMAIL PROTECTED] wrote:

  According to the feedback I got via IRC and on this list, there are several
 people using my API browser (so far known as api-draft).

  This feedback gave me the motivation to further improve the browser
 (including a few more plugins), and to create an official release.

  The time has come:
 http://jquery.bassistance.de/api-browser/

   My own tests yielded good results in Firefox 2.0, Opera 9 and IE6: The
 browser works quite consistent with and without JavaScript. Of course it is
 recommended to view it with JavaScript, because you get:


 Tabbed navigation
 Treeview on categories
 Quicksearch on both navigation and main content
 code highlighting for both HTML and JavaScript snippets
 a vertical splitter that allows you to resize navigation/content panes
 highlighting selected methods in the content
 styled tooltips for method arguments Without JavaScript, the browser
 still provides both categorized and alphabetic navigation, and to a certain
 extend, bookmarks.

  The issue with bookmarks is this: The first time you visit the browser, you
 can select any method and the location hash is properly updated. Once you
 bookmark the location, including the hash, and return to the site, it jumps
 to the correct method, but does not update the hash anymore on further
 navigations. This occurs in both IE and FF, Opera simply fails to jump to
 the correct method in the first place, but updates the hash on following
 clicks.

  If you like the tool and want to use it in your daily jQuery development:
 there is a download link at the header of the browser.

  Of course your feedback is still appreciated!
  --
 Jörn Zaefferer

 http://bassistance.de

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




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


Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-28 Thread Rey Bango
Hi Brice,

Could you post an updated URL? As much as I would be happy to let you 
run the demo off of my PC (ie: localhost), WinXP limits the number of 
connections to IIS so we'll have to host it some place else. LOL! (and 
yes, I said this in humorous way).

Rey...

Brice Burgess wrote:
 I have updated the plugin with the following changes;
  
   + Added emulated fixed position for IE7 (via stylesheet)
   + Update pageHeight function to return full height regardless
   of height setting on body (typically 100%..., upsets .clientHeight)
   + Added a full height IFRAME to overlay creation to prevent IE activeX 
 bleed
   + Optimized code -- Still the same 3.2k!
 
 Plugin URL: http://localhost/eclipse/jqModal/
 
 So far tested working under FF 2.0, Opera 9, and IE6, IE7. I have to 
 emulate IE6's environment, so I'm not sure if it is working there.
 
 NOTES;
   IE6 - Modal is a little jerky when scrolling due to fixed position 
 emulation.
   Opera - Overlays are opaque. Does anyone know a workaround besides 
 making background transparent? A tint would be nice.
 
 If all proves well I'd like to focus on better examples, stylish 
 headers/windows, and making the code as succinct as BlockUI! [but still 
 maintain some readability] ;)
 
 Thanks Mike, Klaus (article on fixed position thickbox), and all those 
 who have responded  expressed some interest.
 
 ~ Brice
 
 
 
 
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/
 

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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Gerry Danen
Excellent tool, Jörn. Downloaded already! :)

The only feedback I have at the moment is the blue flash when I
click an entry. I find that distracting.

Good work!!!

Gerry

On 1/28/07, Jörn Zaefferer [EMAIL PROTECTED] wrote:

  According to the feedback I got via IRC and on this list, there are several
 people using my API browser (so far known as api-draft).


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


Re: [jQuery] Plugins Database: Rating Comments

2007-01-28 Thread Rey Bango
Sounds like a good idea Lick. I'll present this to the team to see what 
everyone thinks. I know things are hectic at the moment so I'll see what 
we can do.

Rey Bango...
jQuery Project Team

Lick wrote:
 Hello everyone,
 
 As the plugins page is continuing to grow every day, I thought it might be
 nice to start organizing them in a more comfortable manner. Features that
 should not be delayed any longer are probably a Rating, a Comment-gallery
 and links to Related Plugins. And of course the usual stuff like author,
 homepage, usage details and example/demo. 
 
 Good idea, yes/no?
 
 - Lick

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


[jQuery] $.ajax get xmldocument works in firefox but not in IE

2007-01-28 Thread myagent

I have a list of products that I wish to load through ajax. The event
triggers a function with an url to the xmldocument. 

A working version of this is placed here:
http://www.myagent.dk/ajaxtest/a.html

The productlist loads fine in firefox, but not in IE. It seems to be the
.each that fails. 

function getItems(mUrl){
  $.ajax(
{
  type: get, url: mUrl, data: category=x, dataType: xml, success:
function(mXml)
  {
var count = 0;
$(/products/product, mXml).each(function(){
count +=1;
var itemid = $(this).attr('itemid');
var retailprice = $(retailprice, this).text();
var itemname = $(itemname, this).text();
drawItem(itemid, retailprice, itemname, count);
  }
);
  }
}
  );
}

function drawItem(itemid, price, name, count)
{
  var productDiv = 
  productDiv += div id='innerProd + count + ' ;
  productDiv += h3 + name + /h3;
  productDiv += p + price + /p;
  productDiv +=  /showimage/ /img;
  productDiv += /div;
  $(div#id + count).html(productDiv);
}

The xml structure looks like this:

?xml version=1.0 encoding=utf-8?
products
product itemid=23011
retailprice139./retailprice
itemnameThera-Band Exercise ABS-Ball 45cm yellow/itemname
/product
product itemid=23021
retailprice159./retailprice
itemnameThera-Band Exercise ABS-Ball 55 cm red/itemname
/product
/products

Does anyone have a clue why this i happening. I have looked throgh the
posted messages. Some points into the bug-list, but all bugs seems fixed.

-- 
View this message in context: 
http://www.nabble.com/%24.ajax-get-xmldocument-works-in-firefox-but-not-in-IE-tf3131695.html#a8677051
Sent from the JQuery mailing list archive at Nabble.com.


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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Rey Bango
I second that. Jorn, the API browser is awesome. Great job bud!

Rey

Brandon Aaron wrote:
 Love it! It is going to get a lot of use. Great job.
 
 --
 Brandon Aaron
 
 On 1/28/07, Jörn Zaefferer [EMAIL PROTECTED] wrote:
  According to the feedback I got via IRC and on this list, there are several
 people using my API browser (so far known as api-draft).

  This feedback gave me the motivation to further improve the browser
 (including a few more plugins), and to create an official release.

  The time has come:
 http://jquery.bassistance.de/api-browser/

   My own tests yielded good results in Firefox 2.0, Opera 9 and IE6: The
 browser works quite consistent with and without JavaScript. Of course it is
 recommended to view it with JavaScript, because you get:


 Tabbed navigation
 Treeview on categories
 Quicksearch on both navigation and main content
 code highlighting for both HTML and JavaScript snippets
 a vertical splitter that allows you to resize navigation/content panes
 highlighting selected methods in the content
 styled tooltips for method arguments Without JavaScript, the browser
 still provides both categorized and alphabetic navigation, and to a certain
 extend, bookmarks.

  The issue with bookmarks is this: The first time you visit the browser, you
 can select any method and the location hash is properly updated. Once you
 bookmark the location, including the hash, and return to the site, it jumps
 to the correct method, but does not update the hash anymore on further
 navigations. This occurs in both IE and FF, Opera simply fails to jump to
 the correct method in the first place, but updates the hash on following
 clicks.

  If you like the tool and want to use it in your daily jQuery development:
 there is a download link at the header of the browser.

  Of course your feedback is still appreciated!
  --
 Jörn Zaefferer

 http://bassistance.de

 ___
 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] dimensions.js console.log error message

2007-01-28 Thread Bruce McKenzie
The version of dimensions.js available on the jquery plugins pages 
contains this on line 233

console.log(' ' + parent.id + ' ' + x + ' ' + y);

which triggers an 'error-on-page' message in IE6.

BTW, is there a packed version of this excellent plugin available?

Bruce
-- 
http://www.2MinuteExplainer.com

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


Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-28 Thread Brice Burgess
Jörn Zaefferer wrote:
 Brice Burgess schrieb:
   
 I have updated the plugin with the following changes;
  
   + Added emulated fixed position for IE7 (via stylesheet)
   + Update pageHeight function to return full height regardless
   of height setting on body (typically 100%..., upsets .clientHeight)
   + Added a full height IFRAME to overlay creation to prevent IE activeX 
 bleed
   + Optimized code -- Still the same 3.2k!

 Plugin URL: http://localhost/eclipse/jqModal/
   
 
 Could you please post a link to some online resource? :-)
   

Ack! Here ye go; http://dev.iceburg.net/jquery/jqModal/
---

I'll be adding true modal functionality later tonight when I have time 
-- I thought of an efficient way to do this. For now, I must run! :)

~ Brice


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


Re: [jQuery] $.ajax get xmldocument works in firefox but not in IE

2007-01-28 Thread myagent

Full post is below.

I have a list of products that I wish to load through ajax. The event
triggers a function with an url to the xmldocument. 

A working version of this is placed here:
http://www.myagent.dk/ajaxtest/a.html

The productlist loads fine in firefox, but not in IE. It seems to be the
.each that fails. 

function getItems(mUrl){
  $.ajax(
{
  type: get, url: mUrl, data: category=x, dataType: xml, success:
function(mXml)
  {
var count = 0;
$(/products/product, mXml).each(function(){
count +=1;
var itemid = $(this).attr('itemid');
var retailprice = $(retailprice, this).text();
var itemname = $(itemname, this).text();
drawItem(itemid, retailprice, itemname, count);
  }
);
  }
}
  );
}

function drawItem(itemid, price, name, count)
{
  var productDiv = 
  productDiv += div id='innerProd + count + ' ;
  productDiv += h3 + name + /h3;
  productDiv += p + price + /p;
  productDiv += /div;
  $(div#id + count).html(productDiv);
}

The xml structure looks like this:

?xml version=1.0 encoding=utf-8?
products
product itemid=23011
retailprice139./retailprice
itemnameThera-Band Exercise ABS-Ball 45cm yellow/itemname
/product
product itemid=23021
retailprice159./retailprice
itemnameThera-Band Exercise ABS-Ball 55 cm red/itemname
/product
/products

Does anyone have a clue why this i happening. I have looked throgh the
posted messages. Some points into the bug-list, but all bugs seems fixed.


-- 
View this message in context: 
http://www.nabble.com/%24.ajax-get-xmldocument-works-in-firefox-but-not-in-IE-tf3131695.html#a8677709
Sent from the JQuery mailing list archive at Nabble.com.


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


Re: [jQuery] dimensions.js console.log error message

2007-01-28 Thread Brandon Aaron
Yikes! Thank Bruce for pointing that out. It is now fixed.

Also you can pack the dimensions plugin with Dean's packer.
http://dean.edwards.name/packer/

--
Brandon Aaron

On 1/28/07, Bruce McKenzie [EMAIL PROTECTED] wrote:
 The version of dimensions.js available on the jquery plugins pages
 contains this on line 233

 console.log(' ' + parent.id + ' ' + x + ' ' + y);

 which triggers an 'error-on-page' message in IE6.

 BTW, is there a packed version of this excellent plugin available?

 Bruce
 --
 http://www.2MinuteExplainer.com

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


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


[jQuery] Help - How to create a sortable tabstrip?

2007-01-28 Thread WG
Hi Folks,

I've done this with scriptaculous ... but have been trying for the past
few hours with jquery and the interface library and I just can't get it
to work.



Essentially I'm trying to build a tabstrip control that allows you
to drag/drop nested tabs dynamically so as to change the tab order (see
www.live.com for what I'm getting at).  I've uploaded the .html file I
started working with here:



tab.html



The main problem I'm having is that whenever I drag tab A over tab B... instead 
tab B being shifted to where tab A was, tab B is pushed underneath.  Maybe its 
a problem with the CSS?  Or maybe I need there are some properites I need to 
set that I'm not? I dunno ... the answer is probably simple ... and that is 
driving me nuts!



thanks - wayde

 


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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Karl Swedberg

me too, me too! Love it!

One suggestion for this, and for Visual jQuery, too:
It would be nice, especially for new jQuery users, to have a link  
somewhere on these pages to

http://docs.jquery.com/DOM/Traversing/Selectors/

People might not be aware that the selector expression info isn't  
part of the API and could get frustrated when they don't see it.


Just a thought.

But again, excellent work, Jörn. You rock!


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



On Jan 28, 2007, at 11:19 AM, Rey Bango wrote:


I second that. Jorn, the API browser is awesome. Great job bud!

Rey

Brandon Aaron wrote:

Love it! It is going to get a lot of use. Great job.

--
Brandon Aaron

On 1/28/07, Jörn Zaefferer [EMAIL PROTECTED] wrote:
 According to the feedback I got via IRC and on this list, there  
are several

people using my API browser (so far known as api-draft).

 This feedback gave me the motivation to further improve the browser
(including a few more plugins), and to create an official release.

 The time has come:
http://jquery.bassistance.de/api-browser/

  My own tests yielded good results in Firefox 2.0, Opera 9 and  
IE6: The
browser works quite consistent with and without JavaScript. Of  
course it is

recommended to view it with JavaScript, because you get:


Tabbed navigation
Treeview on categories
Quicksearch on both navigation and main content
code highlighting for both HTML and JavaScript snippets
a vertical splitter that allows you to resize navigation/ 
content panes

highlighting selected methods in the content
styled tooltips for method arguments Without JavaScript, the  
browser
still provides both categorized and alphabetic navigation, and to  
a certain

extend, bookmarks.

 The issue with bookmarks is this: The first time you visit the  
browser, you
can select any method and the location hash is properly updated.  
Once you
bookmark the location, including the hash, and return to the  
site, it jumps
to the correct method, but does not update the hash anymore on  
further
navigations. This occurs in both IE and FF, Opera simply fails to  
jump to
the correct method in the first place, but updates the hash on  
following

clicks.

 If you like the tool and want to use it in your daily jQuery  
development:

there is a download link at the header of the browser.

 Of course your feedback is still appreciated!
 --
Jörn Zaefferer

http://bassistance.de

___
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/


Re: [jQuery] Plugins Database: Rating Comments

2007-01-28 Thread Danial Tzadeh

Hey all,

Have you seen Joomla plugin directory?
http://extensions.joomla.org/

I think it's one of the best, and also they use jquery. Maybe you can get a
copy of it (or you can use our in-house code at
http://www.joomlaturkiye.org/component/option,com_linkdirectory/task,detail/id,2/Itemid,39/,
site is developed for Turkish community, but has similiar structure to
the
joomla official website one)

What do you think?

Regards,
Danial Tzade
Clexus New Media


On 1/28/07, Lick [EMAIL PROTECTED] wrote:



Well, I've already started making up a layout. I guess it won't hurt if I
just showed it to everyone.
View it at Zooomr:  http://beta.zooomr.com/photos/[EMAIL PROTECTED]/684865
http://beta.zooomr.com/photos/[EMAIL PROTECTED]/684865

I hope to see the real database soon. Good luck implementing it!
- Lick
--
View this message in context:
http://www.nabble.com/Plugins-Database%3A-Rating---Comments-tf3128015.html#a8677362
Sent from the JQuery mailing list archive at Nabble.com.


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

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


Re: [jQuery] position clearing ala Shaun Inman

2007-01-28 Thread Olaf Bosch
Alex Calara schrieb:
 On Jan 28, 2007, at 2:43 AM, Olaf Bosch wrote:
 Try, look at the demension-plugin, let them read the height of the  
 colums.
 The longest use to set the footer.

 Set this variable in the Script to the footer:
 top: LONGEST-COLUMN-HEIGHTpx;


 in your CSS
 #footer{
 position:absolute;
 left: /* what you will */;
 width: /* what ever */;
 
 }
 
 
 I don't think you read the explanation of my problem, and instead you  
 read my reply to Jake (which was explaining why his solution wouldn't  
 work for me). Look up a couple posts, and you'll see my full  
 explanation.

Sorry i see this Problem, you become not the footer at the bottom

The Window, all 3 DIV are absolute:
___
| DIV1 | DIV2 | DIV3 |
| | | |
|_| |_|
   |_|--- Window cane here end
___
| #footer  | --- or here or other pos.
|__|

I hope is visual to see :/

Then you must give the Footer what i written.

Sorry when i posted shit, bad english understanding.

Otherwise, cane you post a link to a demo of the Problem?


-- 
Viele Grüße, Olaf

---
[EMAIL PROTECTED]
http://olaf-bosch.de
www.akitafreund.de
---

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


Re: [jQuery] Help - How to create a sortable tabstrip?

2007-01-28 Thread Allan Mullan
Hey Wayde
Just had a quick look and from what I can see your javascript isn't even 
javascript, it's copies of the HTML... Both the jquery.js and the 
interface.js.

Might need to fix that before anything will work...

Allan


WG wrote:
 Hi Folks,

 I've done this with scriptaculous ... but have been trying for the 
 past few hours with jquery and the interface library and I just can't 
 get it to work.

 Essentially I'm trying to build a tabstrip control that allows you to 
 drag/drop nested tabs dynamically so as to change the tab order (see 
 www.live.com http://www.live.com for what I'm getting at).  I've 
 uploaded the .html file I started working with here:

 tab.html http://www.nabble.com/file/5961/tab.html

 The main problem I'm having is that whenever I drag tab A over tab 
 B... instead tab B being shifted to where tab A was, tab B is pushed 
 underneath.  Maybe its a problem with the CSS?  Or maybe I need there 
 are some properites I need to set that I'm not? I dunno ... the answer 
 is probably simple ... and that is driving me nuts!

 thanks - wayde
  
 

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

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


Re: [jQuery] Flickering when using slideToggle in Firefox

2007-01-28 Thread Ⓙⓐⓚⓔ
next piece of advice... is it double triggering or is it just a jerky animation?

1. swap all out your slides for simplier show and hide... (that's
probably not it!)
2. add debugging code to the click functions to see if they are being
called twice!
3. I just don't see it is it something coded in the css or ...
maybe I am blind!
==
although the page works jerkiness must be stopped!

On 1/28/07, spl1nter [EMAIL PROTECTED] wrote:

 Cheers for the replies.

 Jake, that tip was very helpful for reducing the volume of code cheers!

 Unfortunately using '#[something]' instead of '' doesn't seem to have helped
 with the flickering :(


 Ⓙⓐⓚⓔ wrote:
 
  # vs  !! definitely causes problems!
 
  Might I also suggest you code href=#coding and in your click hander
  you just use $(this.hash) to toggle and slide! Your code can be cut
  down 80%. And it can me made to work in javascript disabled browsers
  (if you put an   in the div!)!
 
  On 1/27/07, Gerry Danen [EMAIL PROTECTED] wrote:
  Hmm... I'm a novice to jQuery also and have just implemented a sliding
  menu on my blog, See http://blog.danen.org .
 
  I noticed a difference in behaviour of href=# vs href=
 
  You may want to check that out.
 

 --
 View this message in context: 
 http://www.nabble.com/Flickering-when-using-slideToggle-in-Firefox-tf3129768.html#a8676061
 Sent from the JQuery mailing list archive at Nabble.com.


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



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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread arnaud sellenet
Thank you so much, and thank you to make it downloadable. Very handy  
for offline use.



Le 28 janv. 07 à 19:12, Karl Swedberg a écrit :


me too, me too! Love it!

One suggestion for this, and for Visual jQuery, too:
It would be nice, especially for new jQuery users, to have a link  
somewhere on these pages to

http://docs.jquery.com/DOM/Traversing/Selectors/

People might not be aware that the selector expression info isn't  
part of the API and could get frustrated when they don't see it.


Just a thought.

But again, excellent work, Jörn. You rock!


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



On Jan 28, 2007, at 11:19 AM, Rey Bango wrote:


I second that. Jorn, the API browser is awesome. Great job bud!

Rey

Brandon Aaron wrote:

Love it! It is going to get a lot of use. Great job.

--
Brandon Aaron

On 1/28/07, Jörn Zaefferer [EMAIL PROTECTED] wrote:
 According to the feedback I got via IRC and on this list, there  
are several

people using my API browser (so far known as api-draft).

 This feedback gave me the motivation to further improve the  
browser

(including a few more plugins), and to create an official release.

 The time has come:
http://jquery.bassistance.de/api-browser/

  My own tests yielded good results in Firefox 2.0, Opera 9 and  
IE6: The
browser works quite consistent with and without JavaScript. Of  
course it is

recommended to view it with JavaScript, because you get:


Tabbed navigation
Treeview on categories
Quicksearch on both navigation and main content
code highlighting for both HTML and JavaScript snippets
a vertical splitter that allows you to resize navigation/ 
content panes

highlighting selected methods in the content
styled tooltips for method arguments Without JavaScript, the  
browser
still provides both categorized and alphabetic navigation, and  
to a certain

extend, bookmarks.

 The issue with bookmarks is this: The first time you visit the  
browser, you
can select any method and the location hash is properly updated.  
Once you
bookmark the location, including the hash, and return to the  
site, it jumps
to the correct method, but does not update the hash anymore on  
further
navigations. This occurs in both IE and FF, Opera simply fails  
to jump to
the correct method in the first place, but updates the hash on  
following

clicks.

 If you like the tool and want to use it in your daily jQuery  
development:

there is a download link at the header of the browser.

 Of course your feedback is still appreciated!
 --
Jörn Zaefferer

http://bassistance.de

___
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/


Re: [jQuery] Flickering when using slideToggle in Firefox

2007-01-28 Thread Steve Jones

Gerry

I have been suffering this problem too - specifically using Mac OS X  
and Firefox... it works fine on Safari. What OS are you working on?  
If its Mac, does the sliding menu work in Safari?


I have the problem here: http://www.g-raff.co.uk/jquery/comchap.html,  
though chances are if you look at it on a PC it will be fine.


Can anyone using Firefox on a Mac confirm that it flickers ONLY on  
FFox Mac? Then maybe we can get to the bottom of the issue (somehow??)


Cheers

SJ


On 28 Jan 2007, at 18:47, Ⓙⓐⓚⓔ wrote:

next piece of advice... is it double triggering or is it just a  
jerky animation?


1. swap all out your slides for simplier show and hide... (that's
probably not it!)
2. add debugging code to the click functions to see if they are being
called twice!
3. I just don't see it is it something coded in the css or ...
maybe I am blind!
==
although the page works jerkiness must be stopped!

On 1/28/07, spl1nter [EMAIL PROTECTED] wrote:


Cheers for the replies.

Jake, that tip was very helpful for reducing the volume of code  
cheers!


Unfortunately using '#[something]' instead of '' doesn't seem to  
have helped

with the flickering :(


Ⓙⓐⓚⓔ wrote:


# vs  !! definitely causes problems!

Might I also suggest you code href=#coding and in your click  
hander

you just use $(this.hash) to toggle and slide! Your code can be cut
down 80%. And it can me made to work in javascript disabled browsers
(if you put an   in the div!)!

On 1/27/07, Gerry Danen [EMAIL PROTECTED] wrote:
Hmm... I'm a novice to jQuery also and have just implemented a  
sliding

menu on my blog, See http://blog.danen.org .

I noticed a difference in behaviour of href=# vs href=

You may want to check that out.




--
View this message in context: http://www.nabble.com/Flickering- 
when-using-slideToggle-in-Firefox-tf3129768.html#a8676061

Sent from the JQuery mailing list archive at Nabble.com.


___
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/


Re: [jQuery] Flickering when using slideToggle in Firefox

2007-01-28 Thread spl1nter

I tried both of these. When using show/hide it works perfectly and there's no
faults. When I added debug code it showed that the function is only called
once.

Maybe it's something in the jQuery code? Perhaps I should just use show/hide
for the meantime?


Ⓙⓐⓚⓔ wrote:
 
 next piece of advice... is it double triggering or is it just a jerky
 animation?
 
 1. swap all out your slides for simplier show and hide... (that's
 probably not it!)
 2. add debugging code to the click functions to see if they are being
 called twice!
 3. I just don't see it is it something coded in the css or ...
 maybe I am blind!
 ==
 although the page works jerkiness must be stopped!
 
 On 1/28/07, spl1nter [EMAIL PROTECTED] wrote:

 Cheers for the replies.

 Jake, that tip was very helpful for reducing the volume of code cheers!

 Unfortunately using '#[something]' instead of '' doesn't seem to have
 helped
 with the flickering :(


 Ⓙⓐⓚⓔ wrote:
 
  # vs  !! definitely causes problems!
 
  Might I also suggest you code href=#coding and in your click hander
  you just use $(this.hash) to toggle and slide! Your code can be cut
  down 80%. And it can me made to work in javascript disabled browsers
  (if you put an   in the div!)!
 
  On 1/27/07, Gerry Danen [EMAIL PROTECTED] wrote:
  Hmm... I'm a novice to jQuery also and have just implemented a sliding
  menu on my blog, See http://blog.danen.org .
 
  I noticed a difference in behaviour of href=# vs href=
 
  You may want to check that out.
 

 --
 View this message in context:
 http://www.nabble.com/Flickering-when-using-slideToggle-in-Firefox-tf3129768.html#a8676061
 Sent from the JQuery mailing list archive at Nabble.com.


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

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

-- 
View this message in context: 
http://www.nabble.com/Flickering-when-using-slideToggle-in-Firefox-tf3129768.html#a8679322
Sent from the JQuery mailing list archive at Nabble.com.


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


Re: [jQuery] Flickering when using slideToggle in Firefox

2007-01-28 Thread Gerry Danen
Steve, I use WinXP.

FF2 works great, but IE7 is indeed a bit jerky but it does not flicker
like Tom's. The jerkiness shows especially in the tab how we help,
probably because it is the longest. I don't find it overly annoying.

Gerry

On 1/28/07, Steve Jones [EMAIL PROTECTED] wrote:
 Gerry

 I have been suffering this problem too - specifically using Mac OS X
 and Firefox... it works fine on Safari. What OS are you working on?
 If its Mac, does the sliding menu work in Safari?

 I have the problem here: http://www.g-raff.co.uk/jquery/comchap.html,
 though chances are if you look at it on a PC it will be fine.

 Can anyone using Firefox on a Mac confirm that it flickers ONLY on
 FFox Mac? Then maybe we can get to the bottom of the issue (somehow??)


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


Re: [jQuery] Help - How to create a sortable tabstrip?

2007-01-28 Thread zelexir



Skorpion wrote:
 
 Hey Wayde
 Just had a quick look and from what I can see your javascript isn't even 
 javascript, it's copies of the HTML... Both the jquery.js and the 
 interface.js.
 
 Might need to fix that before anything will work...
 
 Allan
 
 
 WG wrote:
 Hi Folks,

 I've done this with scriptaculous ... but have been trying for the 
 past few hours with jquery and the interface library and I just can't 
 get it to work.

 Essentially I'm trying to build a tabstrip control that allows you to 
 drag/drop nested tabs dynamically so as to change the tab order (see 
 www.live.com http://www.live.com for what I'm getting at).  I've 
 uploaded the .html file I started working with here:

 tab.html http://www.nabble.com/file/5961/tab.html

 The main problem I'm having is that whenever I drag tab A over tab 
 B... instead tab B being shifted to where tab A was, tab B is pushed 
 underneath.  Maybe its a problem with the CSS?  Or maybe I need there 
 are some properites I need to set that I'm not? I dunno ... the answer 
 is probably simple ... and that is driving me nuts!

 thanks - wayde
  
 

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

Allan that would be because you cant see the original jquery.js he's using,
you just get the same file all over again, just as if you would go to:
http://www.nabble.com/file/5961/bin/hello.world.php
it's still the same output.

For you wayde, I changed a few things, and here is a file that works.
Just change the script links back.
http://www.nabble.com/file/5987/test.html test.html 

No major changes, but I've put a BR that clears the tabs (easier sorting),
added the helperclass and floats: true, in the Sortable config. Oh and I
removed the width: auto !important; it fucked things up, atleast on my FF1.5
and IE7.

Hope it helps //Kristinn
-- 
View this message in context: 
http://www.nabble.com/Help---How-to-create-a-sortable-tabstrip--tf3132030.html#a8680236
Sent from the JQuery mailing list archive at Nabble.com.


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


Re: [jQuery] Flickering when using slideToggle in Firefox

2007-01-28 Thread Ⓙⓐⓚⓔ
or maybe it's the css that slideup has to deal with? test without css
may shed more light!

It may very well be a jq bug... one that nobody ever noticed! How insidious!

On 1/28/07, spl1nter [EMAIL PROTECTED] wrote:

 I tried both of these. When using show/hide it works perfectly and there's no
 faults. When I added debug code it showed that the function is only called
 once.

 Maybe it's something in the jQuery code? Perhaps I should just use show/hide
 for the meantime?


 Ⓙⓐⓚⓔ wrote:
 
  next piece of advice... is it double triggering or is it just a jerky
  animation?
 
  1. swap all out your slides for simplier show and hide... (that's
  probably not it!)
  2. add debugging code to the click functions to see if they are being
  called twice!
  3. I just don't see it is it something coded in the css or ...
  maybe I am blind!
  ==
  although the page works jerkiness must be stopped!
 
  On 1/28/07, spl1nter [EMAIL PROTECTED] wrote:
 
  Cheers for the replies.
 
  Jake, that tip was very helpful for reducing the volume of code cheers!
 
  Unfortunately using '#[something]' instead of '' doesn't seem to have
  helped
  with the flickering :(
 
 
  Ⓙⓐⓚⓔ wrote:
  
   # vs  !! definitely causes problems!
  
   Might I also suggest you code href=#coding and in your click hander
   you just use $(this.hash) to toggle and slide! Your code can be cut
   down 80%. And it can me made to work in javascript disabled browsers
   (if you put an   in the div!)!
  
   On 1/27/07, Gerry Danen [EMAIL PROTECTED] wrote:
   Hmm... I'm a novice to jQuery also and have just implemented a sliding
   menu on my blog, See http://blog.danen.org .
  
   I noticed a difference in behaviour of href=# vs href=
  
   You may want to check that out.
  
 
  --
  View this message in context:
  http://www.nabble.com/Flickering-when-using-slideToggle-in-Firefox-tf3129768.html#a8676061
  Sent from the JQuery mailing list archive at Nabble.com.
 
 
  ___
  jQuery mailing list
  discuss@jquery.com
  http://jquery.com/discuss/
 
 
 
  --
  Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
  ___
  jQuery mailing list
  discuss@jquery.com
  http://jquery.com/discuss/
 
 

 --
 View this message in context: 
 http://www.nabble.com/Flickering-when-using-slideToggle-in-Firefox-tf3129768.html#a8679322
 Sent from the JQuery mailing list archive at Nabble.com.


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



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


Re: [jQuery] position clearing ala Shaun Inman

2007-01-28 Thread Alex Calara
The CSS I can handle. It's the writing of the jQuery function I need  
that I can't do. For convenience's sake, I'll paste my message again.




Here's what I *want* to do: I want to have jQuery reposition a footer  
below a div which has no height (because all its children are  
absolutely positioned). This needs to happen both on window load and  
resize (possibly even with unhiding content?), in order to keep the  
footer at the bottom of any columns which change in size.

Considering that the dimensions plugin doesn't seem to have any  
facility to tell me where the bottom of an element is, I think that I  
need to: grab the height and top offset from the children of  
#content; add the top offset and height of each child together;  
determine which child has the greatest total height; and finally set  
the top of the footer to the result.

I am just not sure how to go about this. I've managed to get the  
height of any one container, and set the top of the footer to that,  
but of course, it's not down far enough, as I don't have the top  
offset and such. I can't figure out how to get only the top offset  
from the dimensions plugin - it hands me an array, and I can't seem  
to cull just the second element out of it.






On Jan 28, 2007, at 11:32 AM, Olaf Bosch wrote:

 Alex Calara schrieb:
 On Jan 28, 2007, at 2:43 AM, Olaf Bosch wrote:
 Try, look at the demension-plugin, let them read the height of the
 colums.
 The longest use to set the footer.

 Set this variable in the Script to the footer:
 top: LONGEST-COLUMN-HEIGHTpx;


 in your CSS
 #footer{
 position:absolute;
 left: /* what you will */;
 width: /* what ever */;
 
 }


 I don't think you read the explanation of my problem, and instead you
 read my reply to Jake (which was explaining why his solution wouldn't
 work for me). Look up a couple posts, and you'll see my full
 explanation.

 Sorry i see this Problem, you become not the footer at the bottom

 The Window, all 3 DIV are absolute:
 ___
 | DIV1 | DIV2 | DIV3 |
 | | | |
 |_| |_|
|_|--- Window cane here end
 ___
 | #footer  | --- or here or other pos.
 |__|

 I hope is visual to see :/

 Then you must give the Footer what i written.

 Sorry when i posted shit, bad english understanding.

 Otherwise, cane you post a link to a demo of the Problem?


 -- 
 Viele Grüße, Olaf

 ---
 [EMAIL PROTECTED]
 http://olaf-bosch.de
 www.akitafreund.de
 ---

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


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


[jQuery] slide functions

2007-01-28 Thread Gerry Danen
A suggestion for documentation enhancement...

I have been trying to figure out what the speed parameter can be,
besides slow and fast.
slideUp, slideDown, slideToggle all accept a string or number, and
pass that on to .animate. Digging in the jquery.js source, I found
slow: 600, fast: 200 }[opt.duration]) || 400;.

Would it be useful to document this such as the API browser? I had no
clue that this referred to milliseconds...

While a good exercise getting into the code, I was not planning to do
that today. ;-)

Gerry

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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Jörn Zaefferer
arnaud sellenet schrieb:
 Thank you so much, and thank you to make it downloadable. Very handy 
 for offline use.
Thanks for the feedback!

I forgot to mention that the download contains all files, so if you 
like, you can modify the XSL file, remove or add plugins, whatever you 
like.

-- 
Jörn Zaefferer

http://bassistance.de


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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Jörn Zaefferer
Gerry Danen schrieb:
 Excellent tool, Jörn. Downloaded already! :)

 The only feedback I have at the moment is the blue flash when I
 click an entry. I find that distracting.

 Good work!!!
   
Thanks!

Seems like the flash does not quite achieve the effect that it should. 
I'll try to improve that.

-- 
Jörn Zaefferer

http://bassistance.de


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


Re: [jQuery] slide functions

2007-01-28 Thread Jörn Zaefferer
Gerry Danen schrieb:
 A suggestion for documentation enhancement...

 I have been trying to figure out what the speed parameter can be,
 besides slow and fast.
 slideUp, slideDown, slideToggle all accept a string or number, and
 pass that on to .animate. Digging in the jquery.js source, I found
 slow: 600, fast: 200 }[opt.duration]) || 400;.

 Would it be useful to document this such as the API browser? I had no
 clue that this referred to milliseconds...

 While a good exercise getting into the code, I was not planning to do
 that today. ;-)
   
Could you please report this as a enhancement? 
http://jquery.com/dev/bugs/new/

-- 
Jörn Zaefferer

http://bassistance.de


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


Re: [jQuery] Flickering when using slideToggle in Firefox

2007-01-28 Thread Gerry Danen
It appears that the animation speed is equal for all blocks, tabs,
menu items, or whatever you have declared as a group.

For example, Tom, on the line
$(this).next(div.expandedSection).slideToggle(400);
change 400 to 2000 and add two topics, one very long, and one very
short (without a graphic) and see the difference in animation speed.

If you could calculate the number of lines in each section, you could
calculate a speed to pass to slideToggle to make all animations appear
to work at the same speed.

I hope I haven't lost you... :)

Gerry

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


[jQuery] Download-able documentation

2007-01-28 Thread Ken Saggy

Hi guys,
I was thinking... why not create some sort of download-able documentation
format? either a ZIP of HTML's of maybe even a .chm (or .hlp) file? (kind of
like PHP or MySQL have)
I personally work a lot on my laptop, ofter not accessible to an internet
connectionif there could be some way to have all of jQuery's
documentation available for download it would be great. wouldn't you agree?

I'd like to hear what you have to say on the subject..

Best regards,
Ken.
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] slide functions

2007-01-28 Thread Gerry Danen
Done.

Thanks, Jörn.

Gerry

On 1/28/07, Jörn Zaefferer [EMAIL PROTECTED] wrote:
 Gerry Danen schrieb:
  A suggestion for documentation enhancement...
 
  I have been trying to figure out what the speed parameter can be,
  besides slow and fast.
  slideUp, slideDown, slideToggle all accept a string or number, and
  pass that on to .animate. Digging in the jquery.js source, I found
  slow: 600, fast: 200 }[opt.duration]) || 400;.
 
  Would it be useful to document this such as the API browser? I had no
  clue that this referred to milliseconds...
 
  While a good exercise getting into the code, I was not planning to do
  that today. ;-)
 
 Could you please report this as a enhancement?
 http://jquery.com/dev/bugs/new/

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


Re: [jQuery] Download-able documentation

2007-01-28 Thread John Keyes
Hi Ken,

You could download the recently mentioned api-browser[1] or
download the documentation site to your local disk using
a HTML spider like Free Download Manager[2] (Windows XP).

Hope that's of some help to you.

-John K

[1] http://jquery.bassistance.de/api-browser/
[2] http://www.freedownloadmanager.org/


On 1/28/07, Ken Saggy [EMAIL PROTECTED] wrote:
 Hi guys,
 I was thinking... why not create some sort of download-able documentation
 format? either a ZIP of HTML's of maybe even a .chm (or .hlp) file? (kind of
 like PHP or MySQL have)
 I personally work a lot on my laptop, ofter not accessible to an internet
 connectionif there could be some way to have all of jQuery's
 documentation available for download it would be great. wouldn't you agree?

 I'd like to hear what you have to say on the subject..

 Best regards,
 Ken.

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




-- 
me: http://www.keyes.ie/johnnyk
job: http://www.putplace.com

charities: http://www.oxfam.ie | http://www.bothar.org | http://www.ipcc.ie

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


Re: [jQuery] Flickering when using slideToggle in Firefox

2007-01-28 Thread Joel Birch
I checked in Safari and the problem does not occur. It's bad in FF2  
Mac though. I've seen problems like this plenty and it seemed to  
always be to do with not having a height or width set on the sliding  
element. I remember that solutions involved resetting the inline  
style property in the callbacks of the animations. Sorry - that is so  
vague. Some of the old threads on this message board may shed more  
light.

Joel.


On 29/01/2007, at 6:37 AM, Steve Jones wrote:

 Can anyone using Firefox on a Mac confirm that it flickers ONLY on  
 FFox Mac? Then maybe we can get to the bottom of the issue (somehow??)


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


Re: [jQuery] Download-able documentation

2007-01-28 Thread Yehuda Katz

I will be releasing a downloadable form of Visual jQuery today.

-- Yehuda

On 1/28/07, John Keyes [EMAIL PROTECTED] wrote:


Hi Ken,

You could download the recently mentioned api-browser[1] or
download the documentation site to your local disk using
a HTML spider like Free Download Manager[2] (Windows XP).

Hope that's of some help to you.

-John K

[1] http://jquery.bassistance.de/api-browser/
[2] http://www.freedownloadmanager.org/


On 1/28/07, Ken Saggy [EMAIL PROTECTED] wrote:
 Hi guys,
 I was thinking... why not create some sort of download-able
documentation
 format? either a ZIP of HTML's of maybe even a .chm (or .hlp) file?
(kind of
 like PHP or MySQL have)
 I personally work a lot on my laptop, ofter not accessible to an
internet
 connectionif there could be some way to have all of jQuery's
 documentation available for download it would be great. wouldn't you
agree?

 I'd like to hear what you have to say on the subject..

 Best regards,
 Ken.

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




--
me: http://www.keyes.ie/johnnyk
job: http://www.putplace.com

charities: http://www.oxfam.ie | http://www.bothar.org |
http://www.ipcc.ie

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





--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] position clearing ala Shaun Inman

2007-01-28 Thread Kristinn Sigmundsson

http://www.nabble.com/file/5995/threecolumnfooter.html threecolumnfooter.html 

Test that file, doesn't use the dimensions plugin but you'll figure it out.
It handles windowresize, but I didn't find a good way to catch a text
resize, so in this example the placeFooter function calls itself after 100ms
(which is a TERRIBLE way to solve it).

Found an article on  http://alistapart.com/articles/fontresizing
alistapart.com  about a better (I think) way for solving textresize matters,
but didn't have the time to read through it. Maybe someone here has some
experience in this?

Anyways, hope it helps //Kristinn


deadguy wrote:
 
 The CSS I can handle. It's the writing of the jQuery function I need  
 that I can't do. For convenience's sake, I'll paste my message again.
 
 Here's what I *want* to do: I want to have jQuery reposition a footer  
 below a div which has no height (because all its children are  
 absolutely positioned). This needs to happen both on window load and  
 resize (possibly even with unhiding content?), in order to keep the  
 footer at the bottom of any columns which change in size.
 
 Considering that the dimensions plugin doesn't seem to have any  
 facility to tell me where the bottom of an element is, I think that I  
 need to: grab the height and top offset from the children of  
 #content; add the top offset and height of each child together;  
 determine which child has the greatest total height; and finally set  
 the top of the footer to the result.
 
 I am just not sure how to go about this. I've managed to get the  
 height of any one container, and set the top of the footer to that,  
 but of course, it's not down far enough, as I don't have the top  
 offset and such. I can't figure out how to get only the top offset  
 from the dimensions plugin - it hands me an array, and I can't seem  
 to cull just the second element out of it.
 
-- 
View this message in context: 
http://www.nabble.com/position-clearing-ala-Shaun-Inman-tf3035522.html#a8681891
Sent from the JQuery mailing list archive at Nabble.com.


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


Re: [jQuery] Download-able documentation

2007-01-28 Thread John Keyes
Great news.  I love the new version by the way.

-John K

On 1/28/07, Yehuda Katz [EMAIL PROTECTED] wrote:
 I will be releasing a downloadable form of Visual jQuery today.

 -- Yehuda


 On 1/28/07, John Keyes [EMAIL PROTECTED]  wrote:
  Hi Ken,
 
  You could download the recently mentioned api-browser[1] or
  download the documentation site to your local disk using
  a HTML spider like Free Download Manager[2] (Windows XP).
 
  Hope that's of some help to you.
 
  -John K
 
  [1] http://jquery.bassistance.de/api-browser/
  [2] http://www.freedownloadmanager.org/
 
 
  On 1/28/07, Ken Saggy [EMAIL PROTECTED]  wrote:
   Hi guys,
   I was thinking... why not create some sort of download-able
 documentation
   format? either a ZIP of HTML's of maybe even a .chm (or .hlp) file?
 (kind of
   like PHP or MySQL have)
   I personally work a lot on my laptop, ofter not accessible to an
 internet
   connectionif there could be some way to have all of jQuery's
   documentation available for download it would be great. wouldn't you
 agree?
  
   I'd like to hear what you have to say on the subject..
  
   Best regards,
   Ken.
  
   ___
   jQuery mailing list
   discuss@jquery.com
   http://jquery.com/discuss/
  
  
 
 
  --
  me: http://www.keyes.ie/johnnyk
  job: http://www.putplace.com
 
  charities: http://www.oxfam.ie | http://www.bothar.org |
 http://www.ipcc.ie
 
  ___
  jQuery mailing list
  discuss@jquery.com
  http://jquery.com/discuss/
 



 --
 Yehuda Katz
 Web Developer | Wycats Designs
 (ph)  718.877.1325
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/




-- 
me: http://www.keyes.ie/johnnyk
job: http://www.putplace.com

charities: http://www.oxfam.ie | http://www.bothar.org | http://www.ipcc.ie

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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Brice Burgess
Jörn Zaefferer wrote:

 The time has come: *http://jquery.bassistance.de/api-browser/*

  
Jörn,

  This is fantastic. Bookmarked/Downloaded. I did experience a 
relatively slow load in FF 2.0/Linux/Modern Machine.. the left frame 
took awhile -- loaded categorized  alphabetical list, then @ 4 seconds 
later hid the cateogrized list  all looked normal. I haven't delved @ 
the code at all but maybe hiding the cateogrized list  showing it in a 
callback of the treeView plugin could help? I'm not certain if the 
screen printing of DOM elements slows things down?

~ Brice


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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Will Mo

fantastic.  Thank you!  Search is key for us n00bs.  ;)

On 1/28/07, Jörn Zaefferer [EMAIL PROTECTED] wrote:


...

The time has come: *http://jquery.bassistance.de/api-browser/*

...

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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Widi Harsojo

I can't help it.., Thank You!
your API doc has been valueable to me, and very light.
I like the doc tree , search and above all it just 1 html to download!
(+js+css :)

~Widi.
just notice that you change the doc.tree inside category.tab.

On 1/29/07, Will Mo [EMAIL PROTECTED] wrote:


fantastic.  Thank you!  Search is key for us n00bs.  ;)

On 1/28/07, Jörn Zaefferer [EMAIL PROTECTED] wrote:

 ...

 The time has come: *http://jquery.bassistance.de/api-browser/*

 ...



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



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


Re: [jQuery] Help - How to create a sortable tabstrip?

2007-01-28 Thread WG
Kristinn,

Thanks for the changes ... they mostly work.  I did notice one problem that 
may just be something with the Interface Sortable plugin ... but sometimes, 
when I move a tab A over tab B, tab B is not moved until I move my mouse up or 
down.  Its a little something ... but annoying ... and could make the user 
think its not working.

Any ideas?

Thanks again - Wayde

- Original Message 
From: zelexir [EMAIL PROTECTED]
To: discuss@jquery.com
Sent: Sunday, January 28, 2007 1:06:51 PM
Subject: Re: [jQuery] Help - How to create a sortable tabstrip?




Skorpion wrote:
 
 Hey Wayde
 Just had a quick look and from what I can see your javascript isn't even 
 javascript, it's copies of the HTML... Both the jquery.js and the 
 interface.js.
 
 Might need to fix that before anything will work...
 
 Allan
 
 
 WG wrote:
 Hi Folks,

 I've done this with scriptaculous ... but have been trying for the 
 past few hours with jquery and the interface library and I just can't 
 get it to work.

 Essentially I'm trying to build a tabstrip control that allows you to 
 drag/drop nested tabs dynamically so as to change the tab order (see 
 www.live.com http://www.live.com for what I'm getting at).  I've 
 uploaded the .html file I started working with here:

 tab.html http://www.nabble.com/file/5961/tab.html

 The main problem I'm having is that whenever I drag tab A over tab 
 B... instead tab B being shifted to where tab A was, tab B is pushed 
 underneath.  Maybe its a problem with the CSS?  Or maybe I need there 
 are some properites I need to set that I'm not? I dunno ... the answer 
 is probably simple ... and that is driving me nuts!

 thanks - wayde
  
 

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

Allan that would be because you cant see the original jquery.js he's using,
you just get the same file all over again, just as if you would go to:
http://www.nabble.com/file/5961/bin/hello.world.php
it's still the same output.

For you wayde, I changed a few things, and here is a file that works.
Just change the script links back.
http://www.nabble.com/file/5987/test.html test.html 

No major changes, but I've put a BR that clears the tabs (easier sorting),
added the helperclass and floats: true, in the Sortable config. Oh and I
removed the width: auto !important; it fucked things up, atleast on my FF1.5
and IE7.

Hope it helps //Kristinn
-- 
View this message in context: 
http://www.nabble.com/Help---How-to-create-a-sortable-tabstrip--tf3132030.html#a8680236
Sent from the JQuery mailing list archive at Nabble.com.


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




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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Joel Birch
On 29/01/2007, at 9:22 AM, Jörn Zaefferer wrote:

 Seems like the flash does not quite achieve the effect that it should.
 I'll try to improve that.

Maybe animate a scroll to the requested item instead? That would make  
it pretty obvious that you have moved to another item. On the other  
hand, I guess some people may find that equally as distracting as the  
blue flash.

Love it all by the way.

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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Gerry Danen
A 50ms scroll would not be as distracting, I think.

Not complaining or nit-picking. Just observing. :)

Gerry

On 1/28/07, Joel Birch [EMAIL PROTECTED] wrote:
 On 29/01/2007, at 9:22 AM, Jörn Zaefferer wrote:

  Seems like the flash does not quite achieve the effect that it should.
  I'll try to improve that.

 Maybe animate a scroll to the requested item instead? That would make
 it pretty obvious that you have moved to another item. On the other
 hand, I guess some people may find that equally as distracting as the
 blue flash.

 Love it all by the way.

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


Re: [jQuery] jQuery Tools: API Browser

2007-01-28 Thread Widi Harsojo

Yes! indispensable API guide,
the flash help me when i click wrap(Element) other than that, I know since
it will be on the first line of the content.

Widi. http://jquery.bassistance.de/api-browser/#wrapElement

On 1/29/07, Joel Birch [EMAIL PROTECTED] wrote:


On 29/01/2007, at 9:22 AM, Jörn Zaefferer wrote:

 Seems like the flash does not quite achieve the effect that it should.
 I'll try to improve that.

Maybe animate a scroll to the requested item instead? That would make
it pretty obvious that you have moved to another item. On the other
hand, I guess some people may find that equally as distracting as the
blue flash.

Love it all by the way.

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

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


Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-28 Thread Brice Burgess
I've update the jqModal codebase again. I was lucky enough to rdesktop 
into a friend's machine where I was able to test the code under IE6 and 
IE7! :) -- as the Mac is on vacation, it remains untested/unreported 
under Safari.

Changes include;

  + Compatibility Improvements
 ( Tested under FF, FF2, IE6, IE7, and Opera 9 )
  + Code optimizations

Plugin Page: http://dev.iceburg.net/jquery/jqModal/

---

I guess my next plans will be to modularize the code by employing a 
plugin framework, resulting in an extensible plugin. This way 'optional' 
code could be added/pulled to include support for more complex behaviors 
like 'true modal' [block all actions outside of current modal], 
animating the window, providing custom plugin hooks, overriding the ajax 
function, etc. etc.

I am uncertain as the best means to go about this. Perhaps a 
hook/listener method where the main plugin/function is hardcoded to 
check for a 'listener' (a jqModal plugin) at certain points/action 
during program flow, and IF EXISTS, direct program flow to the 
listener(s) before returning back to base execution.

Another option would be to extend jqModal and its methods through the 
plugin-to-be via a method similar to Dean Edward's base class 
(http://dean.edwards.name/weblog/2006/03/base/) -- although I think I'd 
run into complexities with stacking plugins.

Does anyone have/know of examples of JS plugin frameworks that may be 
applicable?

Thanks!

~ Brice

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


Re: [jQuery] Help - How to create a sortable tabstrip?

2007-01-28 Thread Stefan Petre




WG wrote:

  
  
  Hi Folks,
  
I've done this with scriptaculous ... but have been trying for the past
few hours with jquery and the interface library and I just can't get it
to work.
  
  
  Essentially I'm trying to build a tabstrip control that allows
you
to drag/drop nested tabs dynamically so as to change the tab order (see
  www.live.com for
what I'm getting at). I've uploaded the .html file I
started working with here:
  
  
  tab.html
  
  
The main problem I'm having is that whenever I drag tab A over tab B...
instead tab B being shifted to where tab A was, tab B is pushed
underneath. Maybe its a problem with the CSS? Or maybe I need there
are some properites I need to set that I'm not? I dunno ... the answer
is probably simple ... and that is driving me nuts!
  
  
thanks - wayde
  

  
  
  
  

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

Hi Wayde,

Hope this will help you:
http://interface.eyecon.ro/demos/sort_tabs.html

Stefan



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


Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-28 Thread Joel Birch
On 29/01/2007, at 5:29 PM, Brice Burgess wrote:

 it remains untested/unreported
 under Safari.

Hi Brice,
It's all looking extremely tasty. Thought I'd check it out on Safari  
2.0.4 for you. Good news. It works exactly like it does in Mac FF2.

The only strange thing I noticed in both browsers was this: Click the  
'view' link for '4. No Overlay, Styled Overlay' and then activate the  
styled overlay modal. Close both of these modals and then click the  
'view' link for '1. Defaults'. This modal is now styled exactly like  
the styled overlay modal was from example 4, except that the overlay  
is grey instead of green.

This may be just due to how you have the demo page setup but I  
thought I'd point it out incase it causes confusion at some stage.

Great work.

Joel.

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


Re: [jQuery] Help - How to create a sortable tabstrip?

2007-01-28 Thread Stefan Petre
I hope this will help you
http://interface.eyecon.ro/demos/sort_tabs.html

Stefan

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


Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-28 Thread Stéphane Nahmani
On 29 janv. 07, at 7:29, Brice Burgess wrote:

 as the Mac is on vacation, it remains untested/unreported
 under Safari

It works under the Tiger Safari, but only the last 2 are actually  
modal; clicking on the bg for the first 3 closes the dialog.

Good work.

-- 
   Stéphane
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-28 Thread Joel Birch
On 29/01/2007, at 6:09 PM, Stéphane Nahmani wrote:

 It works under the Tiger Safari, but only the last 2 are actually
 modal; clicking on the bg for the first 3 closes the dialog.

I can confirm this actually. This differs from Mac FF2.

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


Re: [jQuery] Deserialize plugin question on Nabble

2007-01-28 Thread ashutosh bijoor

Hi John
Thanks to Florian Fackler's modification, there is a new configurable option
called 'overwrite' which controls whether variables that are not defined in
the JSON overwrite the form variables or not.
Pls find modified code at
http://www.reach1to1.com/sandbox/jquery/testform.html

Regards
Ashhutosh

On 1/28/07, John Snook [EMAIL PROTECTED] wrote:


Ashutosh-

Looks great!  Thanks for taking care of us PHP users.  It's the kind of
thing that will speed the already rapid conversion to jquery.

There is only one other thing that I would ask for from your excellent
plugin:

Currently, if there's a field that is not addressed in the JSON, it gets
set to null, which is often undesirable.
Ideally, the value should remain unchanged.

But, even if you don't change that, I'll continue to use your time-saving
plugin!

Thanks again sir,
John Snook



On 1/27/07, ashutosh bijoor [EMAIL PROTECTED] wrote:

 Hi John
 Thanks for the alert to your message. Pardon the delay in response.
 I have modified the plugin to add an option for accommodating the php
 style names of form inputs.
 Pls check the example and code at:
 http://reach1to1.com/sandbox/jquery/testform.html
 Regards
 Ashutosh

 On 1/26/07, John Snook [EMAIL PROTECTED] wrote:
 
  Hello Mr. Bijoor,
 
  I've posted a 
questionhttp://www.nabble.com/Deserialize-plugin-and-PHP-mulitiselect-format-problem-tf3124015.htmlabout
 your excellent plugin on Nabble.
 
  If you have a chance in the near future to take a look, I would
  greatly appreciate it.
 
  Thanks,
  John Snook
  Atlanta, GA
  678-613-0556




 --
 Reach1to1 Technologies
 http://www.reach1to1.com
 http://on2.biz
 [EMAIL PROTECTED]




--
John Snook
Atlanta, GA
678-613-0556





--
Reach1to1 Technologies
http://www.reach1to1.com
http://on2.biz
[EMAIL PROTECTED]
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/