Re: [jQuery] Visual jQuery 1.0 -- Redux

2006-08-27 Thread Franck Marcia
Hi Yehuda,

It would be handy if you could scroll each column independantly. For
example, if you scroll down to the end of events list and select, say,
keyup, you have to scroll up to find out the article.

Just a thought; very useful anyway :-)

Franck.

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


Re: [jQuery] svn difficulties

2006-08-29 Thread Franck Marcia
2006/8/29, Marco M. Jaeger [EMAIL PROTECTED]:

 Am I the only have currently having trouble to download the latest files –
 this is the error I'm getting all the sudden: Error: Cannot replace a
 directory from within

 Any ideas – am I doing anything wrong?


I have the same problem but only with the read-only access. The
authenticated one works.

It must come from the last reboot of John's server ;-)

Franck.

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


Re: [jQuery] svn difficulties

2006-08-29 Thread Franck Marcia

 I have the same problem but only with the read-only access. The
 authenticated one works.

 It must come from the last reboot of John's server ;-)


No problem with your server, John.

Marco,

I created a brand new sandbox from svn://jquery.com/jquery and
everything works fine.

Franck.

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


Re: [jQuery] del.icio.us powered mp3 player plugin

2006-08-29 Thread Franck Marcia
David,

I tested it with IE5.5, IE6, IE7RC1, FF1.5.0.6 and Opera9 and it works
fine... if you remove object and only keep embed:
http://fmarcia.info/jquery/mp3/mp3.html

I don't know if object is mandatory for other browsers; if so, you
could use $.browser to check it.

Franck.

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


Re: [jQuery] AJAX .Load stripping out a STYLE tag.

2006-08-31 Thread Franck Marcia
2006/8/31, Hartman, Matthew [EMAIL PROTECTED]:
 So any how, I must assume it's what you said with innerHTML not playing
 well with STYLE tags. If I include the STYLE tag as part of the
 originally served document there is no problem at all.

It's the same problem as http://proj.jquery.com/discuss/2006-August/010302/

Perhaps, you could try inline styles or to insert a style tag in the DOM (?)

Tell us if it works

Franck.

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


[jQuery] Ant

2006-09-01 Thread Franck Marcia
Hi all,

When I want to build jQuery with Ant, I've got this message:
Unable to locate tools.jar. Expected to find it in C:\Program
Files\Java\jre1.5.0_03\lib\tools.jar
Buildfile: build.xml

Everything works well; it's just for cleanliness.

Did anyone solve this?

Franck.

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


Re: [jQuery] Ant

2006-09-01 Thread Franck Marcia
OK guys,

For the record: you need to use Java SDK, not JRE.

Franck

2006/9/1, Franck Marcia [EMAIL PROTECTED]:
 Hi all,

 When I want to build jQuery with Ant, I've got this message:
 Unable to locate tools.jar. Expected to find it in C:\Program
 Files\Java\jre1.5.0_03\lib\tools.jar
 Buildfile: build.xml

 Everything works well; it's just for cleanliness.

 Did anyone solve this?

 Franck.


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


Re: [jQuery] Synchronizing

2006-09-02 Thread Franck Marcia
 Hi folks,

 is there any way to synchronize calls in javascript without using callbacks?


You could use a sort of proof of concept I wrote months ago:
http://fmarcia.info/jquery/chain. I'm not sure it'll work with the
latest version of jQuery though.

Franck.

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


Re: [jQuery] Basic JS extensions: String

2006-09-09 Thread Franck Marcia
There's also good things here: http://www.jsfromhell.com and there:
http://dev.rubyonrails.org/browser/spinoffs/prototype/src

Franck.

2006/9/9, limodou [EMAIL PROTECTED]:
 On 9/9/06, Jörn Zaefferer [EMAIL PROTECTED] wrote:
  Hi folks,
 
  just uploaded a set of extensions to the String object. Until now, there
  is no way yet to generate documentation like it is done with jQuery,
  therefore the presentation is not too interessting.
  You can see the test suite running here:
  http://joern.jquery.com/sandbox/stringTest.html (together with links for
  uncompressed and compressed version).
  All functions have inline documentation with examples.
 
  Does this make any sense at all? Would you consider those extensions usful?
  And, the most interesting question: Would it be a good idea to depend
  jQuery on this, eg. replacing $.trim and therefore making jQuery itself
  smaller?
 
  -- Jörn
 
  P.S.: Coming next, Arrays :-)
 
 I also made something like your.

 http://code.google.com/p/jbasicext/


 --
 I like python!
 My Blog: http://www.donews.net/limodou
 UliPad Site: http://wiki.woodpecker.org.cn/moin/UliPad
 UliPad Maillist: http://groups.google.com/group/ulipad

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


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


Re: [jQuery] bug in Accordion Menu

2006-09-09 Thread Franck Marcia
2006/9/9, Maison Dominic Germain [EMAIL PROTECTED]:
 Hi Franck,


Hi Dominic,

 I start using your Accordion Menu last week.  It's very kewl!  But
 with the the latest jquery release (rev 249), it does not work more
 than one time...


jQuery now behaves differently than before when you query $('div',
this.parentNode). It now returns 2 elements (correct) so slideDown is
called twice and running never returns to 0!

To fix it, replace
var p = $('div', this.parentNode);
with
var p = $(this).siblings('div');

I updated the example on http://fmarcia.info/jquery/accordion.html too
(with rev. 288).

Thanks.

Franck.

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


Re: [jQuery] When / how did you find out about jQuery?

2006-09-27 Thread Franck Marcia
I first read an article at Ajaxian's on january 2006
(http://ajaxian.com/archives/jquery-another-small-javascript-library)
but did not start to use it at this time. I was keeping an eye on the
big 3 too.

Later, starting a project which mimics gmail interface, I started to
really use jQuery and nothing else.

Furthermore, jQuery inspires me with a lot of essays, proofs of
concept and other amusements.

btw, many thanks, John!

Franck.

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


Re: [jQuery] Signals and slots

2006-09-28 Thread Franck Marcia
  Good work Franck.

 Indeed.  And it looks like he's added quite a bit to it since the
 original.  Cool.


Hey,

I've reported to the list regularly: http://jquery.com/discuss/2006-May/#4964

;-)

Franck.

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


Re: [jQuery] New Plugin: offset

2006-10-01 Thread Franck Marcia
2006/10/2, Brandon Aaron [EMAIL PROTECTED]:
 So I went ahead and released another plugin today that gets the offset
 (along with some other properties) of the first matched element in the
 jQuery object. I've gone through a lot of trouble to test this in the
 different browsers (except Linux) and getting it working in lots of
 different situations. I believe there might be other methods (or
 others working on methods) for doing this with jQuery but this is what
 I've been using and just want to get it out there for others to use if
 they want too.


Hi Brandon,

You should work with Paul on this:
http://jquery.com/dev/svn/jquery/src/dimensions/dimensions.js

Franck.

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


Re: [jQuery] Evaluating script elements

2006-10-03 Thread Franck Marcia
2006/10/3, Mark Gibson [EMAIL PROTECTED]:
 The solution is to wait for each script to load before executing the
 next. Here's my solution as a plugin:


It reminds me of a post I made: http://jquery.com/discuss/2006-June/005496/.

It was not specific to scripts loads but could be tweaked to work with.

Cheers,

Franck.

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


Re: [jQuery] Rev: 259, where is now?

2006-10-03 Thread Franck Marcia
 I don't know how I got Rev: 259, because current latest is 249. I wandered
 around but I cannot find a link to it in jquery.com.


The last rev is #387, accessible via svn (http://jquery.com/src/)

 259 works better with IE than 249
 For example, 259 let me access tabs in a pre tag, while 249 doesn't



It should be better and better ;-)

Franck.

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


Re: [jQuery] Rev: 259, where is now?

2006-10-03 Thread Franck Marcia
2006/10/3, Andrea Ercolino [EMAIL PROTECTED]:

 Thanks Franck, but I feel a dummy now.
 Where is the link to download this 387 version?


There's currently no prebuilt jquery.js from svn. You must do it
yourself using a svn client. On Windows, you can use TortoireSVN
(http://tortoisesvn.net/).

But that's not the end. Once you get it, you must install/use ant or
make to build jquery. There's a recent thread on this in the mailing
list. However and Michael said, you can build it yourself manually.

Franck.

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


Re: [jQuery] extending functions?

2006-10-04 Thread Franck Marcia
OK

I modified Accordion to be more flexible:
http://fmarcia.info/jquery/accordion.html.

You can now set an action when an item is clicked, shown or hidden and
you can choose the animation speed.

Any comment appreciated.

Cheers,

Franck.

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


Re: [jQuery] extending functions?

2006-10-04 Thread Franck Marcia
2006/10/4, Rey Bango [EMAIL PROTECTED]:
 In FF, it looks very nice.

 In IE 7, on the accordian with options, there's a very noticeable color
 change in the text from dark to light which doesn't happen in FF.

 Also, the accordian w/ options also has a very distracting flicker to it
   when you select a div to expand or contract.


Thanks, Rey

Both of them are caused by the onClick option. I tried to demonstrate
its use. Bad idea as I just did not test it with IE7 :-(

Now, it just logs every action.

And I tested it with IE5.5, IE6, IE7RC1, FF1.5.0.7 and Opera 9.02.

Franck.

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


[jQuery] New plugin: sparkline

2006-10-07 Thread Franck Marcia
Hi all,

I've released a new plugin: sparkline. A sparkline is an inline
graphic 
(http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001ORtopic_id=1).

I borrowed the idea (and most of the code) from the TiddlyWiki
project, a very good one-page wiki (http://www.tiddlywiki.com). Thanks
to Jeremy Ruston for his work and his permission.

Here is the link to the test page:
http://fmarcia.info/jquery/sparkline/sparkline.html

It's tested successfully on Windows XP with FF1.5.07, IE5.5, IE6,
IE7RC1 and Opera 9.02. However, even if it works fine with FF on
Linux, it doesn't behave correctly with Konqueror. I assume it's the
same with Safari...

As usual, any comment appreciated.

Cheers,

Franck.

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


Re: [jQuery] New plugin: sparkline

2006-10-07 Thread Franck Marcia
@ Karl: thank you for the info.

@ John: I will take a look at canvas; I missed your implementation but
now, I will certainly borrow some parts ;-)

Cheers,

Franck.

2006/10/7, John Resig [EMAIL PROTECTED]:
 Back in the day I wrote some sparkline code myself:
 http://ejohn.org/apps/jspark/

 This particular one uses the Canvas element (giving it a nice
 antialias). My code looks kind of scary, in retrospect, but it seems
 like it wouldn't be too bad to give it a jQuery facelift.

 Franck - Doing a quick check to see if the user is using IE, or not,
 you could be able to use the Canvas element no problem.

 --John

 On 10/7/06, Franck Marcia [EMAIL PROTECTED] wrote:
  Hi all,
 
  I've released a new plugin: sparkline. A sparkline is an inline
  graphic 
  (http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001ORtopic_id=1).
 
  I borrowed the idea (and most of the code) from the TiddlyWiki
  project, a very good one-page wiki (http://www.tiddlywiki.com). Thanks
  to Jeremy Ruston for his work and his permission.
 
  Here is the link to the test page:
  http://fmarcia.info/jquery/sparkline/sparkline.html
 
  It's tested successfully on Windows XP with FF1.5.07, IE5.5, IE6,
  IE7RC1 and Opera 9.02. However, even if it works fine with FF on
  Linux, it doesn't behave correctly with Konqueror. I assume it's the
  same with Safari...
 
  As usual, any comment appreciated.
 
  Cheers,
 
  Franck.
 
  ___
  jQuery mailing list
  discuss@jquery.com
  http://jquery.com/discuss/
 


 --
 John Resig
 http://ejohn.org/
 [EMAIL PROTECTED]

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


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


Re: [jQuery] New plugin: sparkline

2006-10-07 Thread Franck Marcia
2006/10/7, John Resig [EMAIL PROTECTED]:
 Franck - Doing a quick check to see if the user is using IE, or not,
 you could be able to use the Canvas element no problem.

OK, I did it. Same address: http://fmarcia.info/jquery/sparkline/sparkline.html

However, just one color in this case as it doesn't make sense, imo.

And there's a problem with the position of the canvas element I can
solve for the moment. I set the background of the container, a span
element, to black to see it. (any idea?)

Cheers,

Franck.

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


Re: [jQuery] Broken Build

2006-10-08 Thread Franck Marcia
2006/10/8, Jörn Zaefferer [EMAIL PROTECTED]:
 the current build script seems to be broken: Only the ajax part of the
 complete jQuery file is parsed, resulting in a lite version with only
 ajax docs removed and api docs and tests with only ajax docs/tests.
 Doing some diff debugging by comparing revisions of the files involved
 (build.xml, build/js/parse.js etc.) didn't reveal anything.

 Any ideas? Is this working with the makefile?

Hi Jörn,

It's not because of the code but because of the data. There are many
contributors now, using different OS which means different ways to
insert a character when you strike enter :-)

In short, the current regexp blockMatch in build/build/lite.js doesn't
take '\r' into account.

A quick and dirty way to fix the problem is to insert .replace( /\r/g,
 ) just after readFile(...) and before any other replace.

Cheers,

Franck.

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


Re: [jQuery] Broken Build

2006-10-08 Thread Franck Marcia
2006/10/8, Jörn Zaefferer [EMAIL PROTECTED]:
 I tried your quick and dirty fix for lite: It worked but was awfully
 slow.

This hack works for me and is fast:

var blockMatch = /\s*\/\*\*\s*((.|\r\n|\r|\n)*?)\s*\*\/(\r\n|\r|\n)*/g;
var f = readFile(arguments[0]).replace( blockMatch, \n ).replace(
/\r/g,  ).replace( /\n\n+/g, \n\n );

However, I'm not sure it's the best way as I'm not a regexp guru.

Franck.

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


Re: [jQuery] pack speed

2006-10-09 Thread Franck Marcia
2006/10/9, Fil [EMAIL PROTECTED]:
 has anyone measured the speed of unpacking jquery (or any other script, for
 that matter)?


On my system: 125 ms when on battery (laptop), 65 ms when on power.

It depends completely on the system it's running on.

Franck.

 I would suspect that uncompressing/executing jquery.pack.js generates a
 small time overhead, but how long does it take? Compared to the time
 overhead of downloading the full-size jquery.js?


The smallest non-packed version of jQuery is 29 Kb vs. 19 Kb for the
packed one (rev #407), so you save 10 Kb.

This time, it depends completely on the network it's passing thru.

Franck.

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


Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Franck Marcia
2006/10/9, Franck Marcia [EMAIL PROTECTED]:
 2006/10/9, Jörn Zaefferer [EMAIL PROTECTED]:
   thesame system? An absolute must if you are a web developer...
  Try this: http://tredosoft.com/IE7_standalone

 ... and the opposite: ie3 to ie6, standalone.

 Franck.


... and the link: Forgot the link:
http://browsers.evolt.org/?ie/32bit/standalone

Franck.

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


Re: [jQuery] New plugin: sparkline

2006-10-09 Thread Franck Marcia
2006/10/9, dizzledorf [EMAIL PROTECTED]:

 Nice work, Franck.


Thank you.

 How do I get the sparklines to work with negative values?


I plan to integrate it soon.

Franck.

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


Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Franck Marcia
2006/10/9, Klaus Hartl [EMAIL PROTECTED]:
 Wow Franck, you are still testing in IE3? ;-)


I tried to use it, just for fun... but found no fun :-(

Franck.

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


Re: [jQuery] IE7 May be Pushed out Tomorrow

2006-10-09 Thread Franck Marcia
2006/10/9, Michael Geary [EMAIL PROTECTED]:
 Use VMware and you can run every version of IE, and Firefox, and any other
 Windows browser you want to test.

There's also an open source alternative: QEmu
(http://fabrice.bellard.free.fr/qemu/)

I use it and find it faster than vmware.

Franck.

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


[jQuery] dimensions.js

2006-10-10 Thread Franck Marcia
Hi,

What's the status of dimensions.js?

I mean, in SVN, it's located where it should be built-in but the build
process doesn't take it into account.

On the other hand, if it's a plugin, it should reside in the directory
plugins.

Franck.

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


Re: [jQuery] New Plugin: Resizeable

2006-10-21 Thread Franck Marcia
2006/10/21, Stefan Petre [EMAIL PROTECTED]:
 After a wild period at my work, I managed to make some time to develop a
 new plugin.


Really good work, Stefan!

I've been thinking about doing something like this for textareas. Do
you think your plugin can do that?

Franck.

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


Re: [jQuery] New Plugin: Resizeable

2006-10-22 Thread Franck Marcia
2006/10/22, Stefan Petre [EMAIL PROTECTED]:
 Franck, try this http://interface.eyecon.ro/demos/resize_textarea.html

 Franck Marcia wrote:
  2006/10/21, Stefan Petre [EMAIL PROTECTED]:
 
  I think you can use for textareas, just that you have to move the handle
  while the textarea is resized
 
 
 
  I gave it a try: http://fmarcia.info/jquery/resize
 
  Report:
 
  There's a odd behavior with FF: after you resized the textarea the
  first time, it looses 4px in width.
 
  Adding a doctype declaration to make it xhtml 1.0 strict resolves
  the problem but the textarea becomes larger than the resizer (?)
 
  With IE, when you start to drag the resizer the first time, the
  textarea's height quickly becomes the min height.
 
  Same behavior than FF with the doctype declaration.
 
  Franck.
 
  ___
  jQuery mailing list
  discuss@jquery.com
  http://jquery.com/discuss/
 
 


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


I first thought you resolve the problem using 'absolute' display but
actually, it works inline as well!

Many thanks, Stefan.

Franck.

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


Re: [jQuery] BUG: Rebinding an event in IE

2006-10-25 Thread Franck Marcia
2006/10/26, Brice Burgess [EMAIL PROTECTED]:
 I have a click event assigned to a link. When the event fires, I'd
 like to unbind this event and re-assign a new click event to the link.
 The re-assignment is handled within the originating click event.

 Is the a jQ bug? Is there a better workaround/means? I realize I could
 probably have 2 links  hide the inactive one.


Hi, Brice

I ran into the same problem.

The workaround I found was something like this:

script
$(function() {
$(#link).click(function() {
if ($(this).html() == '') {
alert('');
$(this).html('');
} else {
alert('');
$(this).html('');
}
return false;
});
});

/script

a href=# id=link/a

Not really optimized, but you've got it.

Cheers,

Franck.

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


Re: [jQuery] Improved Event system new Accordion

2006-10-26 Thread Franck Marcia
2006/10/26, Jörn Zaefferer [EMAIL PROTECTED]:
 Hi folks,


Hi, Jörn,

 I just commited a few changes to jQuery's event system. I fixed the target 
 property of the event.target for both IE and Safari, and modified bind: It 
 now accepts an optional third parameter that specifies the number of times 
 the handler has to executed. When that amount is reached, it removes the 
 handler. All onexxx events like oneclick now use that option and potentiolly 
 provide better performance.


Good job! (Jörn is back!!!)

 I updated the accordion plugin to demonstrate and test these changes:
 http://joern.jquery.com/accordion/accordion.html


Your version relies on the way the menu is described. In extenso, it
must be a definition list. Couldn't it be more independant? Is that
about semantic?

Here is the lastest version of the manner I did it:
http://fmarcia.com/projets/jquery/accordion
(click on ici to see the source code).

I stayed with the rationale to set it not chainable, contrary to yours
(but I'm not very sure about it... :-p )

Cheers,

Franck.

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


Re: [jQuery] Replacing Accordion plugins

2006-11-13 Thread Franck Marcia
2006/11/13, Jörn Zaefferer [EMAIL PROTECTED]:
 I wonder if I can remove the current two links to your accordion plugins, and 
 replace them with this one.


Hi Jörn,

It's OK for me. You did a great work on this and it's better to not
confuse users with many plugins which do the same thing.

Cheers,

Franck.

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


[jQuery] Firebug 1.0 coming soon

2006-11-16 Thread Franck Marcia
Hi all,

Did you miss it? http://www.getfirebug.com

(it's not an ad, I'm just a fan)

Franck.

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


Re: [jQuery] More DOM Query Speed Tests

2006-12-19 Thread Franck Marcia
Hi all,

With the tests I ran (http://fmarcia.info/jquery/speedtest.html [1]),
the quickest way to retrieve one element is
$(document.getElementById(id)), even better than $('#id')!

Off course, to get even better performance, one should cache queries
every time it's possible!

My 2 cents,

Franck.

[1] caution: buttons div div strong and div  div  strong are very slow

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


Re: [jQuery] My brain is broken

2007-01-03 Thread Franck Marcia
2007/1/3, digital spaghetti [EMAIL PROTECTED]:
 I've just tried it in FF2.0.0.1 with Firebug 1.0b8 and I can confirm
 that it runs fine when the code is pasted into Firebug, but does not
 work in the browser - I get your origional results.


It seems to be a different behaviour when the dom is ready or not than
a difference between fb and scripts in page.

If you wrap your script with a jQ ready function like below, it works fine.

$(function(){
// your code
});

But don't ask me why! :-)

Franck.

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


Re: [jQuery] Sliding glitch

2007-01-20 Thread Franck Marcia

2007/1/20, Steve Jones [EMAIL PROTECTED]:


I'm suffering a strange glitch with a slideToggle method. What seems to
happen is that a linebreak is added to the beginning of text content in the
target element just as the animation starts either opening or closing, and
is only removed on completion of the animation. Whatsmore, there is a brief
flash of the whole target DIV just as the animation begins on a hidden
element.



If you use Firebug, you can see that the animation uses several css
properties: height varies, at the end 'display' is set to 'none' and at the
beginning 'overflow' is set to 'hidden'. It's the latter which introduces
the line-break effect.

It must be because of the h2 above and its implicit css properties. Try to
use a div instead and tell us.

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


Re: [jQuery] jQuery Tools: API Browser

2007-01-29 Thread Franck Marcia
2007/1/28, Jörn Zaefferer [EMAIL PROTECTED]:
  The time has come:
 http://jquery.bassistance.de/api-browser/


Very good job! It should be hosted at jquery.com!

I gave this url to every of my coworkers I convinced to work with jQuery.

I'm not sure it'll be easy/fast enough but do you think there's a way
to highlight keys searched via the search-in-content box? I was quite
confused the first time I used it.

About ergonomy, commands toggle all... should not look like tabs.

Cheers,

Franck.

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


Re: [jQuery] jQuery Tools: API Browser

2007-01-29 Thread Franck Marcia
2007/1/29, Jörn Zaefferer [EMAIL PROTECTED]:
 Like, while filtering non-fitting elements, highlighting the search term
 in the rest? That should be delegated to the quicksearch plugin...


That's right. So that's a feature request for this plugin :-) Rik?

 Any idea how that could be designed?


Why not just links, like gmail for selection (all,none...), as they
don't alter data in the tree?

Franck.

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


Re: [jQuery] OT: Debugging PHP With Firebug

2007-02-08 Thread Franck Marcia
For this purpose, you should also have a look at this project:
http://www.firephp.org/

Franck.

2007/2/8, Dave Methvin [EMAIL PROTECTED]:
 Excellent idea, Mike! I use ASP, but it should be a quick port to make it
 run there.

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
 Behalf Of Mika Tuupola
 Sent: Thursday, February 08, 2007 9:41 AM
 To: jQuery Discussion.
 Subject: [jQuery] OT: Debugging PHP With Firebug

 Warning! Someone might consider the following blatant self promotion...

 Anyway people developing with PHP and jQuery might find this useful.
 I wrote a Firebug handler / driver for PEAR::Log package. It enables logging
 PHP errors into Firebug console. I wrote it while debugging last project we
 did with jQuery and PHP. Got fed up checking PHP debug log and JavaScript
 debug log in different windows.

 http://www.appelsiini.net/~tuupola/312/debugging-php-with-firebug

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




 ___
 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] Want to know if sites are jQuery powered? Check this out!

2007-02-09 Thread Franck Marcia
2007/2/9, Paul Bakaus [EMAIL PROTECTED]:
 I have set up a easy but useful greasemonkey script, which adds a
 small jquery icon in the bottom right corner if jQuery is found.


Paul,

To get around any diversion of $, perhaps you should use jQuery in
place of $ (?)

Franck.

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


[jQuery] Plugin wanted

2007-02-28 Thread Franck Marcia
Hi all,

Sorry for this request but I've looked for a plugin I saw which
auto-sizes an input or a textarea according to its content.

I looked at the plugins' page, in the mailing list archive. No way to find it!

If somebody could help me...

Cheers,

Franck.

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


Re: [jQuery] Plugin wanted

2007-02-28 Thread Franck Marcia
I got it: autoexpander in interface.

Franck.

2007/2/28, Franck Marcia [EMAIL PROTECTED]:
 Hi all,

 Sorry for this request but I've looked for a plugin I saw which
 auto-sizes an input or a textarea according to its content.

 I looked at the plugins' page, in the mailing list archive. No way to find it!

 If somebody could help me...

 Cheers,

 Franck.


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


Re: [jQuery] Plugin wanted

2007-02-28 Thread Franck Marcia
2007/2/28, Stefan Kilp [sk-software] [EMAIL PROTECTED]:
 take a look here
 http://interface.eyecon.ro/demos

 an try Autoexpander demo


Thanks, Stefan.

/franck

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