[jQuery] Center on current date

2007-04-10 Thread Alexandre Plennevaux
Hello friends! I have a long, scrollable div containing a (long) list of (short) news items, organized by date descending. We put news of events already on for the coming months, so in fact, by default the first news displayed are way ahead of now. So i'm looking for a way to have the div

[jQuery] Re: Center on current date

2007-04-10 Thread Alexandre Plennevaux
Can anybody tell me if this is feasible at all, or has any experience in this? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: mardi 10 avril 2007 17:51 To: jquery-en@googlegroups.com Subject: [jQuery] Center

[jQuery] Re: Find Y position of an element on the page

2007-04-16 Thread Alexandre Plennevaux
offset method that will get the position of the element. See the inline docs for examples. http://brandon.jquery.com/plugins/dimensions/dimensions.js -- Brandon Aaron On 4/16/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Hello! Do you know if it is possible at all via jquery, and if so

[jQuery] Blink effect

2007-04-23 Thread Alexandre Plennevaux
was wondering if anyone succeeded in creating that special effect, that would have something blink a certain number of times upon appearing ? thank you very much! alex Alexandre Plennevaux - LAb[au] asbl.vzw / MediaRuimte Lakensestraat/Rue de Laeken 104 B-1000 Brussel-Bruxelles-Brussels

[jQuery] Re: Blink effect

2007-04-23 Thread Alexandre Plennevaux
Nathanson Sent: lundi 23 avril 2007 20:42 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Blink effect How about callback = function() { $(#mydiv).hide().show().hide().show() } -- Josh - Original Message - From: HYPERLINK mailto:[EMAIL PROTECTED]Alexandre Plennevaux

[jQuery] Re: Blink effect

2007-04-23 Thread Alexandre Plennevaux
callback = function() { $(#mydiv).hide().show().hide().show() } -- Josh - Original Message - From: HYPERLINK mailto:[EMAIL PROTECTED]Alexandre Plennevaux To: HYPERLINK mailto:jquery-en@googlegroups.comjquery-en@googlegroups.com Sent: Monday, April 23, 2007 1:27 PM Subject: [jQuery] Blink

[jQuery] Re: $('#div').hide(); - ?

2007-04-24 Thread Alexandre Plennevaux
This should work !! $('#language').hide(); If your html is : div id=content div id=language ... -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of agent2026 Sent: mardi 24 avril 2007 11:03 To: jQuery (English) Subject: [jQuery]

[jQuery] Process get variables to add a class

2007-04-25 Thread Alexandre Plennevaux
hello! I would like to add a selected class to one of the menu items - to visually tell the user where s/he is on the site - i usually do this via php with dynamic website, but here the menu is a static external html file. So i would like to do it via jquery, but i'm puzzled as to how to

[jQuery] Re: plugins page!!!!

2007-04-25 Thread Alexandre Plennevaux
I guess we could use a nice accordion : so that you can see first the choice of categories. Or a folder/file treeview ? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ariel Jakobovits Sent: mercredi 25 avril 2007 10:47 To:

[jQuery] test if element as a class

2007-04-27 Thread Alexandre Plennevaux
Alexandre Plennevaux - LAb[au] asbl.vzw / MediaRuimte Lakensestraat/Rue de Laeken 104 B-1000 Brussel-Bruxelles-Brussels Belgie-Belgique-Belgium Tel:+32(0)2.219.65.55 Fax:+32(0)2.426.69.86 Mobile:+32(0)476.23.21.42 HYPERLINK blocked::http://www.lab-au.com/http://www.lab-au.com HYPERLINK

[jQuery] path and selectors

2007-04-27 Thread Alexandre Plennevaux
hello! i would like to know if there is a way to have jquery tell you what is the DOM path to an element. For example: $(this).click(function(){ alert($(this).getPath(); }); which would output html body div.col ul.menu li a.selected ?? thank you!! alex Alexandre

[jQuery] Re: path and selectors

2007-04-27 Thread Alexandre Plennevaux
Thank you my preciousss, it is very useful to debug !! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dave Cardwell Sent: vendredi 27 avril 2007 13:13 To: jQuery (English) Subject: [jQuery] Re: path and selectors Alexandre Plennevaux

[jQuery] Re: An idea for a jQuery core addition - Plugin Registering...

2007-04-30 Thread Alexandre Plennevaux
It seems like inevitable to me too, Dan. If for example, $.plugin.find([dimension,blockui,below]); fails, it would output a message Error: plugin plugin_name requires other_plugin_name. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G.

[jQuery] Re: Dropdown select value help

2007-05-03 Thread Alexandre Plennevaux
Hi luc, basically, with the few details you provide, i can only say that you will trigger things using the event change on the select element. From then on, use the select.val() example: $(select#type).change(function(){ if($(this).val()=='root'){

[jQuery] Re: Dropdown select value help

2007-05-03 Thread Alexandre Plennevaux
without any change from the user. Does that help explain it more? _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: 03 May 2007 13:28 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Dropdown select value help Hi luc, basically

[jQuery] Re: Dropdown select value help

2007-05-03 Thread Alexandre Plennevaux
; } }); _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: 03 May 2007 14:40 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Dropdown select value help this should work, no? you could of course make this much more code efficient by wrapping

[jQuery] prevent parent behaviour

2007-05-04 Thread Alexandre Plennevaux
hello friends, i have this html structure: dta href=mylink.php class=ajaxclick me/a/dt i have a behaviour for the DT element, which, on click, should toggle the visibility of its corresponding DD element. I also have a behaviour for the A element, which loads via ajax content somewhere

[jQuery] Detect if an element is visible

2007-05-07 Thread Alexandre Plennevaux
to do that? Thank you! Alexandre Alexandre Plennevaux - LAb[au] asbl.vzw / MediaRuimte Lakensestraat/Rue de Laeken 104 B-1000 Brussel-Bruxelles-Brussels Belgie-Belgique-Belgium Tel:+32(0)2.219.65.55 Fax:+32(0)2.426.69.86 Mobile:+32(0)476.23.21.42 HYPERLINK blocked::http://www.lab-au.com

[jQuery] Re: retrive how bytes are loaded...possible?

2007-05-07 Thread Alexandre Plennevaux
jake, can you explain how to use this? It sounds very interesting, but i'm too noob to fill in the blanks ! thank you Alexadnre _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sent: lundi 7 mai 2007 18:24 To: jquery-en@googlegroups.com Subject:

[jQuery] Re: NEW jQuery plugin - tableFilter() Beta 1. Auto-paging, filtering and sorting on multiple columns.

2007-05-07 Thread Alexandre Plennevaux
Nice job, the demo is impressive! Yet that one table i'm working on is 3500 rows+ I'll give your plugin a try, though ! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daemach Sent: mardi 8 mai 2007 0:02 To: jQuery (English) Subject: [jQuery]

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

2007-05-08 Thread Alexandre Plennevaux
i use thickbox, jScrollpane and few custom jquery functions here : HYPERLINK http://www.lab-au.comhttp://www.lab-au.com it's a temporary website, but the final website will make HEAVY use of jquery for ajax, layouting and visual effects, in a non obtrusive manner. stay tuned! _ From:

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-08 Thread Alexandre Plennevaux
Excellent ! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jan Sorgalla Sent: mardi 8 mai 2007 14:42 To: jQuery (English) Subject: [jQuery] jCarousel 0.2.0 Beta Hi, i've released the a new version of jCarousel yesterday. The source code is

[jQuery] Re: get url?

2007-05-10 Thread Alexandre Plennevaux
Yes dear, use the Mathias' plugin getParams http://www.mathias-bank.de/2007/04/21/jquery-plugin-geturlparam-version-2/ Your printable info will be: $printed_link = $(a#link_id).getUrlParam(perma_link); Hope this helps!! alex -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: ..animation question..

2007-05-14 Thread Alexandre Plennevaux
Personally, i would suggest that you consider this: if what you want to set up goes more into animations, effects rather than enhancing ergonomy or usability, embed a flash file where you will be able to achieve the perfect visual effect instead of doing it all in javascript. I'm not saying you

[jQuery] callback in a plugin

2007-05-14 Thread Alexandre Plennevaux
pleaseDoTheseThings (params){ $(#dothis).show(); } $(input#example1).jqUploader({ background: FF9900, barColor: FFDD00, allowedExt: gif, callBack: pleaseDoTheseThings }); Thanks a lot! Alexandre Alexandre Plennevaux - LAb[au] asbl.vzw

[jQuery] Re: callback in a plugin

2007-05-14 Thread Alexandre Plennevaux
Alexandre Plennevaux ha scritto: i would like to add this to the jqUploader plugin, so that i could do something like: function pleaseDoTheseThings (params){ $(#dothis).show(); } $(input#example1).jqUploader({ background: FF9900, barColor: FFDD00

[jQuery] thickbox reloaded?

2007-05-15 Thread Alexandre Plennevaux
hello, I know thickbox 3 is out. What of the parallel branch thickbox reladed ? Is it still on? thank you, Alexandre

[jQuery] Re: thickbox reloaded?

2007-05-15 Thread Alexandre Plennevaux
Yes. I don't see the need for the usage of an iframe if you're in the same domain. Indeed, but when i discovered that i was at 6/8 of the development. A bit late to redo everything. In the meanwhile, i need that hack. $(element).thickbox({ width: '50%', height: '50%' }); I tried that, the

[jQuery] Re: thickbox reloaded?

2007-05-15 Thread Alexandre Plennevaux
The rel attribute actually has some meaning and I don't think it should be used for such kind of processing (I'd consider that as obtrusive). A user agent may provide some useful information depending on the value of the rel attribute, whereas a value of say iframe is obtrusive/useless for a

[jQuery] Jquery mailinglist suggestion

2007-05-16 Thread Alexandre Plennevaux
the whole discussion context/ thread. jThanks, Alexandre Alexandre Plennevaux - LAb[au] asbl.vzw / MediaRuimte Lakensestraat/Rue de Laeken 104 B-1000 Brussel-Bruxelles-Brussels Belgie-Belgique-Belgium Tel:+32(0)2.219.65.55 Fax:+32(0)2.426.69.86 Mobile:+32(0)476.23.21.42 HYPERLINK blocked

[jQuery] Re: Jquery mailinglist suggestion

2007-05-17 Thread Alexandre Plennevaux
- and use that for your mailing lists On 16/05/07, Alexandre Plennevaux HYPERLINK mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] wrote: hello to the jQuery team, i was wondering, does google group allows to have the post thread weblink automatically appended to each message? This would be useful to me

[jQuery] Re: avoid event bubbling to ancestors but still activate the default action?

2007-05-17 Thread Alexandre Plennevaux
$(#divid).click(function(event){ event.stopPropagation(); ... }) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Qiangning Hong Sent: jeudi 17 mai 2007 11:49 To: jQuery (English) Subject: [jQuery] avoid event bubbling to ancestors

[jQuery] Re: simple div with scrollbar plugin

2007-05-17 Thread Alexandre Plennevaux
Jscrollpane: http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Shafer Sent: jeudi 17 mai 2007 21:34 To: jQuery (English) Subject: [jQuery] simple div with scrollbar

[jQuery] Re: jquery.us

2007-05-18 Thread Alexandre Plennevaux
It seems they have leeched the html of the original jquery.com code. there are no more google ads. That was quick! Do you think there is any correlation to the hacking and now this attempt at stealing jquery ? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]

[jQuery] Re: jquery.us

2007-05-18 Thread Alexandre Plennevaux
... --Erik On 5/18/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: It seems they have leeched the html of the original jquery.com code. there are no more google ads. That was quick! Do you think there is any correlation to the hacking and now this attempt at stealing jquery ? -Original

[jQuery] Re: Debugging jQuery

2007-05-19 Thread Alexandre Plennevaux
thanks jake, but i think it's better if you just post a link to a webpage documenting your library. Here, Outlook prevented access to your .js attachment. in any case, without docs, i'm lost :) _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sent:

[jQuery] Re: Streaming information from a server

2007-05-21 Thread Alexandre Plennevaux
Using setInterval to launch a check process at regular intervals? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of peter Sent: lundi 21 mai 2007 9:58 To: jQuery (English) Subject: [jQuery] Streaming information from a server I have a server

[jQuery] Re: Capture and manipulate scrollwheel event

2007-05-21 Thread Alexandre Plennevaux
There is a mousewheel plugin http://www.ogonek.net/mousewheel/jQuery_mousewheel_plugin.js -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Fazal Khan Sent: lundi 21 mai 2007 16:10 To: jQuery (English) Subject: [jQuery] Capture and manipulate

[jQuery] Re: Text Button

2007-05-22 Thread Alexandre Plennevaux
1/ you can make any tag clickable by adding a click event. That's thanks to javascript, but jquery makes it more easily accessible. $('p').click(function(){ // do this and do that ... }); As for the cursor hand look , you can do that in css p{ Cursor: pointer; } -Original

[jQuery] Re: Drop shadows and Tooltips

2007-05-22 Thread Alexandre Plennevaux
You should check clueTip out, it's really great: http://examples.learningjquery.com/62/ As for the drop shadow effect, i used the one delivered with clueTip, and simply resize it tremendously so as to accomodate any (reasonable) size. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: opposite of filter()

2007-05-23 Thread Alexandre Plennevaux
$('p').not('.thisClass') From the doc: $(p).not( $(div p.selected) ) Before divpHello/pp class=selectedHello Again/p/div Result: [ pHello/p ] -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Sent: mercredi 23 mai 2007 12:35

[jQuery] Re: [ANN] jQuery Media Plugin

2007-05-23 Thread Alexandre Plennevaux
Mike, this is really impressive. Bravo! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: mercredi 23 mai 2007 12:58 To: jQuery Discussion Subject: [jQuery] [ANN] jQuery Media Plugin I've been working on consolidating and

[jQuery] Re: [ANN] jQuery Media Plugin

2007-05-23 Thread Alexandre Plennevaux
Or better even, a link to the media plugin installation page °-] like http://www.adobe.com/getflashplayer -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: mercredi 23 mai 2007 13:59 To: jquery-en@googlegroups.com

[jQuery] Re: improving page apparition

2007-05-23 Thread Alexandre Plennevaux
Thank you Dan, i'll try your suggestion. Although i think that the way you construct it will have people without javascript not see the content but that's easily corrected :) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II

[jQuery] Re: Loading before teh DOM is ready

2007-05-25 Thread Alexandre Plennevaux
Please note that in this implementation, users without javascript enabled will not be able to see your comment. The #content and #loading parts should be respectively ON and OFF in your css stylesheet. javascript should control the entire sequence and not only the end of it. The way i did it

[jQuery] Re: excluding elements

2007-05-25 Thread Alexandre Plennevaux
: excluding elements Haven't actually tried these out but they might be worth a try. $(a,button).not ('.external, .thickbox, #shortcuts a') or $(a,button).not('.external').not ('.thickbox').not (#shortcuts a') On May 25, 11:59 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hello friends! a quick

[jQuery] excluding elements

2007-05-25 Thread Alexandre Plennevaux
not function, even A elemnets with the specified classes trigger the behaviour. Can you tell me how to code this properly? maybe i should chain the not() instead? thanks a lot! Alexandre Plennevaux - LAb[au] asbl.vzw / MediaRuimte Lakensestraat/Rue de Laeken 104 B-1000 Brussel-Bruxelles-Brussels

[jQuery] jscrollpane does not disappear when container is hidden

2007-05-25 Thread Alexandre Plennevaux
. Alexandre Plennevaux - LAb[au] asbl.vzw / MediaRuimte Lakensestraat/Rue de Laeken 104 B-1000 Brussel-Bruxelles-Brussels Belgie-Belgique-Belgium Tel:+32(0)2.219.65.55 Fax:+32(0)2.426.69.86 Mobile:+32(0)476.23.21.42 HYPERLINK blocked::http://www.lab-au.com/http://www.lab-au.com HYPERLINK

[jQuery] Re: jscrollpane does not disappear when container is hidden

2007-05-25 Thread Alexandre Plennevaux
nevermind, my fault, i was hiding the scrollpane itself and not the above containing element. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: vendredi 25 mai 2007 15:45 To: jquery-en@googlegroups.com Subject: [jQuery] jscrollpane

[jQuery] Re: Masked Input Field

2007-05-25 Thread Alexandre Plennevaux
Couldn't agree more. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris W. Parker Sent: vendredi 25 mai 2007 16:57 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Masked Input Field On Thursday, May 24, 2007 11:36 AM Jörn Zaefferer

[jQuery] Re: get the current mouse position

2007-05-27 Thread Alexandre Plennevaux
did u try cluetip? HYPERLINK http://examples.learningjquery.com/62/http://examples.learningjquery.com/6 2/ _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexander Petri Sent: dimanche 27 mai 2007 12:08 To: jQuery (English) Subject: [jQuery] get the current

[jQuery] Re: Jtip problem

2007-06-02 Thread Alexandre Plennevaux
i confirm clueTip is a very nice plugin. I used it in a very nice way, as a kind of rollodex fiche to display a person data in an addressbook. thanks karl! _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: samedi 2 juin 2007 20:48 To:

[jQuery] Re: How to point Thickbox3 links in an iframe to the iframe's container

2007-06-04 Thread Alexandre Plennevaux
Simply using target=_top ou target=_parent as your links target attributes does not work? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of n00bert Sent: lundi 4 juin 2007 6:56 To: jquery-en@googlegroups.com Subject: [jQuery] How to point

[jQuery] toggle() append: how to?

2007-06-05 Thread Alexandre Plennevaux
hello jQ-zillos ! i have a list of links organised in subsections, and i would like to modify each section title, adding to it a value provided by the link. Clicking on another link should reset the section title and append it with the new link 's value. I'm puzzled on how to code this

[jQuery] Re: security advice

2007-06-05 Thread Alexandre Plennevaux
That's a rather vague question, hence my vague answer :): have your php script called via ajax check for the user authentication session before performing the request. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Stuhr Sent: mardi 5

[jQuery] Re: files upload

2007-06-07 Thread Alexandre Plennevaux
Hello fullgarbage, i will look into that. version 1.0 beta will be released later today. It does not feature yet multiple file uploads, but it brings a lot of improvements, including maximum file size and error message customization. _ From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-07 Thread Alexandre Plennevaux
Hello jqMates, I'm pleased to inform this great assemblee that jqUploader, a flash-based upload widget allowing progress display of upload in a non obtrusive manner, has just been updated to version 1 New features: - maximum file size implemented (using the good old html input

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Alexandre Plennevaux
Thanks :) apparently there is a need for an installation guide, i'll work on it tonight. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: vendredi 8 juin 2007 1:54 To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE:

[jQuery] Re: Please help! Why is this not working on IE6?

2007-06-08 Thread Alexandre Plennevaux
try this: $(a.preview_promocion).bind(click,function(){ $this= $(this); $(a#thickbox_loader).attr(href,images/inmuebles/+$this.attr('id')+.jp g); $(#vista_promocion img).attr(src, http://www.icorpal.com/helpers/image_cropped.php?width=300height=200posit

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Alexandre Plennevaux
be doing something. On 6/8/07, Tane Piper [EMAIL PROTECTED] wrote: I'm working on my local development environment. On 6/8/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Link please? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Alexandre Plennevaux
=errorSizeMessage=File is too big!validFileMessage=now click Upload to proceedprogressMessage=Please wait, uploading Thanks On 6/8/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Hello jqMates, I'm pleased to inform this great assemblee that jqUploader, a flash-based upload widget allowing

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Alexandre Plennevaux
using Flash8 Professional, and getting an unexpected file format error message when trying to open the file. On Jun 8, 8:39 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Thanks :) apparently there is a need for an installation guide, i'll work on it tonight. -Original Message

[jQuery] Re: Can a ThickBox appear over the top of my Flash content?

2007-06-08 Thread Alexandre Plennevaux
Note that i could never get it to work on safari http://codylindley.com/thickboxforum/comments.php?DiscussionID=36page=1#Com ment_213 -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Oddish Sent: vendredi 8 juin 2007 15:50 To: jQuery

[jQuery] Re: ajax related question

2007-06-08 Thread Alexandre Plennevaux
orials:AJAX_and_Events --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 8, 2007, at 10:42 AM, Alexandre Plennevaux wrote: hello! i'm developing a website where a div gets updated via an ajax call: that new content contains Anchor elements with a class=tag Now, i have

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0

2007-06-08 Thread Alexandre Plennevaux
the image uploads, so I'm assuming something with your plugin is incompatible with it. On 6/8/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: If jquploader appears, then the issue is on your serverside script. Php? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: Can a ThickBox appear over the top of my Flash content?

2007-06-08 Thread Alexandre Plennevaux
, Alexandre Plennevaux wrote: Note that i could never get it to work on safari HYPERLINK http://codylindley.com/thickboxforum/comments.php?DiscussionID=36page=1#Co mhttp://codylindley.com/thickboxforum/comments.php?DiscussionID=36page=1#C om ment_213 -Original Message- From: jquery-en

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

2007-06-08 Thread Alexandre Plennevaux
clueTip is awesome: HYPERLINK http://examples.learningjquery.com/62/http://examples.learningjquery.com/6 2/ _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rob Desbois Sent: vendredi 8 juin 2007 16:54 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Jquery

[jQuery] Re: ANNOUNCE: jqUploader plugin upgraded to v1.0.1

2007-06-08 Thread Alexandre Plennevaux
This is just to inform that i just added an installation guide to assist non jquerians, as well the flash source file is flash 8 compatible, and i also added an option to display the form submit button (in case the upload is not mandatory). Thanks for your feedback and suggestions ! Ce

[jQuery] jquery documentation as xml?

2007-06-12 Thread Alexandre Plennevaux
Hello friends, i'm considering developing a small standalone app to access the jquery doc. Is the documentation's raw content available somewhere online? Thank you, Alexandre Alexandre Plennevaux - LAb[au] asbl.vzw / MediaRuimte Lakensestraat/Rue de Laeken 104 B-1000 Brussel-Bruxelles

[jQuery] Re: jTip and ToolTip featured on smashing magazine

2007-06-12 Thread Alexandre Plennevaux
clueTip rules !! _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: mercredi 13 juin 2007 0:14 To: jquery-en@googlegroups.com Subject: [jQuery] Re: jTip and ToolTip featured on smashing magazine Hey, that's cool! They feature clueTip, too,

[jQuery] Re: German Support Forum? intrested?

2007-06-13 Thread Alexandre Plennevaux
I understand your concern (i'm a french speaking person) but i think you would diminish the overall responsiveness of the jquery community if we start to divide the community in our local languages. I don't feel like following the activities of several groups for one technology. It seems to me

[jQuery] INSPIRE: eyeos.org

2007-06-13 Thread Alexandre Plennevaux
This looks amazing, clean, responsive interface to control a distant computer via an internet browser: HYPERLINK http://www.eyeos.org/http://www.eyeos.org/ amazing, isn't it? Alexandre Ce message Envoi est certifié sans virus connu. Analyse effectuée par AVG. Version: 7.5.472 / Base de

[jQuery] Re: INSPIRE: eyeos.org

2007-06-13 Thread Alexandre Plennevaux
in 1984, The network is the computer. /rant Anyways, thanks for pointing it out. It certainly is very slick. When will we see a jQuery plugin for it? ;) It is open source software after all! --Erik On 6/13/07, Alexandre Plennevaux HYPERLINK mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] wrote

[jQuery] traversing the content of an iframe

2007-06-13 Thread Alexandre Plennevaux
dear all, i need to access the dom inside the page in an iframe . Is it possible at all? so far all my attempts failed miserably... your feedback would be precious! thanks alexandre Ce message Envoi est certifié sans virus connu. Analyse effectuée par AVG. Version: 7.5.472 / Base de

[jQuery] Re: Request to all developers: Put version number in file name please

2007-06-13 Thread Alexandre Plennevaux
i would personnally recommend to use numerized folder names instead of .js filenames, as often, plugins require, say, an image, or a css file. I usually have my folder structure like this: Domain.com ./_js/ ./_js/jquery/ ./_js/jquery_plugins/ ./_js/jquery_plugins/thickbox/v2/thickbox.js

[jQuery] jScrollpane issue in ie6

2007-06-14 Thread Alexandre Plennevaux
hello! Could you help me debug why the jscrollpane plugin does not work with internet explorer 6 on this page? HYPERLINK http://www.lab-au.com/v1/index.php?section=newshttp://www.lab-au.com/v1/index.php?section=news problem with internet explorer 6 is that there is not proper debugger

[jQuery] Re: jScrollpane issue in ie6

2007-06-14 Thread Alexandre Plennevaux
sorry guys, i found the error was in a missing overflow: auto instruction in the css file, as well as not setting the container position to absolute. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: jeudi 14 juin 2007 10:48

[jQuery] Re: attaching events to dynamically inserted links

2007-06-14 Thread Alexandre Plennevaux
Hi sergei, There is a tutorial that nicely explains how to do just that: http://docs.jquery.com/Tutorials:AJAX_and_Events Cheers! alexandre -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergei Sent: jeudi 14 juin 2007 10:07 To: jQuery

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Alexandre Plennevaux
I feel Matt Kruse is putting the finger on the right spots, but i would not change the whole roadmap: a properly structured, thought-out plugin repository, and probably monitored by members of the jquery team could be just as good a solution. I personally really like the core/plugins structure.

[jQuery] Re: CNN and Apple Choose Prototype. Why?

2007-06-14 Thread Alexandre Plennevaux
Well, i'm no apple nor cnn, but let me say i've tried prototype and jquery and i 've chosen jquery. With prototype, i couldn't ever figure how to write it correctly, and when i did find, i was WTF-ing at the code, like, wow, javascript is complicated . With jquery, i just try things, and, guess

[jQuery] Re: Update Broadband Stats

2007-06-15 Thread Alexandre Plennevaux
There is one other solid argument for keeping jquery filesize down: dial-up modem is one part of reality, costly internet surfing via mobile phone connection (gprs, wap ...) is another one, which also should increase in the future. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Plugin redesign option

2007-06-16 Thread Alexandre Plennevaux
Hello friends, i would like to redevelop my jqUploader plugin, rebuilding it around Luke Lutman's jquery Flash plugin. Doing so i guess mine becomes more of an extension than a standalone plugin. Hence, i would like to ask how to best articulate the two: in other words, should i just use

[jQuery] Plugin question

2007-06-18 Thread Alexandre Plennevaux
hello! i'm stuck on how to do this: i would like to extend Luke's flash plugin for my jqUploader plugin, yet no matter how i formulate the $(this).flash() call in the plugin the flash object is not created. I don't get any error, and if i try outside my plugin it works. Here is the

[jQuery] Re: Plugin question

2007-06-18 Thread Alexandre Plennevaux
Yes, and nothing wrong comes up as errors. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: lundi 18 juin 2007 12:15 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Plugin question Good point is... it sounds like i'm

[jQuery] Re: New Plugin Repository

2007-06-19 Thread Alexandre Plennevaux
Sounds good! I created my account and added my plugin, and had no issue. Only thing is had i knew there would be such a support system provided, i wouldn't have created a forum for my plugin users. How well, it does not matter, i'll turn it into a FAQ zone... I think it would be nice that it be

[jQuery] Re: New Plugin Repository

2007-06-19 Thread Alexandre Plennevaux
Also, i suggest to use thickbox to view the screenshot(s) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris W. Parker Sent: mardi 19 juin 2007 18:00 To: jquery-en@googlegroups.com Subject: [jQuery] Re: New Plugin Repository On Monday,

[jQuery] Re: New Plugin Repository

2007-06-19 Thread Alexandre Plennevaux
Hence the rating system: let us all spend 10 min. to rate our favourite plugins !! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rhapidophyllum Sent: mardi 19 juin 2007 21:12 To: jquery-en@googlegroups.com Subject: [jQuery] Re: New Plugin

[jQuery] Re: Help with stopping event propagation.

2007-06-20 Thread Alexandre Plennevaux
You may be looking after event.stopPropagation(); $(form).bind(submit, function(event){ event.stopPropagation(); }); http://docs.jquery.com/Events -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of barophobia Sent: mercredi 20 juin 2007

[jQuery] Re: NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread Alexandre Plennevaux
Maybe using microformats? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: mercredi 20 juin 2007 20:58 To: jquery-en@googlegroups.com Subject: [jQuery] Re: NEWS: iPhone Browser Capabilites Released If I had to guess,

[jQuery] Re: New Plugin Repository

2007-06-21 Thread Alexandre Plennevaux
Another idea: i'd like to be informed whenever a new plugin has been added, because plugins are a source of inspiration . Possible to have RSS or email warning? Or an automated and preformated email to the mailing list? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: Could anyone send me a copy of Catfish Advert Plugin 1.3.

2007-06-21 Thread Alexandre Plennevaux
Why don't you add it to the plugin directory instead? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sz_quadri Sent: jeudi 21 juin 2007 9:29 To: jQuery (English) Subject: [jQuery] Re: Could anyone send me a copy of Catfish Advert Plugin 1.3.

[jQuery] Re: Easing rocks

2007-06-21 Thread Alexandre Plennevaux
GianCarlo, it is really nice! Is it possible to use it as paging for large chunks of text? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of GianCarlo Mingati Sent: jeudi 21 juin 2007 12:19 To: jQuery (English) Subject: [jQuery] Re: Easing rocks

[jQuery] problem using jquery.flash plugin in my plugin

2007-06-21 Thread Alexandre Plennevaux
/jqUploader/jquery.jqUploader_proto.js could someone have a look and let me know what i'm doing wrong? And if you would like to see how it should work: http://www.pixeline.be/experiments/jqUploader/test.php Thanks a lot, Alexandre Alexandre Plennevaux pixeline http://www.pixeline.be/_img

[jQuery] Re: problem using jquery.flash plugin in my plugin

2007-06-21 Thread Alexandre Plennevaux
Of Alexandre Plennevaux Sent: jeudi 21 juin 2007 21:41 To: jquery-en@googlegroups.com Subject: [jQuery] problem using jquery.flash plugin in my plugin Hello! i'm trying to switch the dependency of my plugin to a proper jquery plugin dedicated to flash embedding instead of swfobject. Yet i cannot

[jQuery] SITE: http://www.pandora.com

2007-06-22 Thread Alexandre Plennevaux
they are using jquery on HYPERLINK http://www.pandora.comhttp://www.pandora.com , a last.fm like website. Alexandre Plennevaux - LAb[au] asbl.vzw / MediaRuimte Lakensestraat/Rue de Laeken 104 B-1000 Brussel-Bruxelles-Brussels Belgie-Belgique-Belgium Tel:+32(0)2.219.65.55 Fax:+32(0

[jQuery] Re: SITE: http://www.pandora.com

2007-06-22 Thread Alexandre Plennevaux
://docs.jquery.com/Sites_Using_jQueryhttp://docs.jquery.com/Sites_Usin g_jQuery _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: 22 June 2007 10:02 To: jquery-en@googlegroups.com Subject: [jQuery] SITE: http://www.pandora.com

[jQuery] Re: jquery flash plugin bug

2007-06-22 Thread Alexandre Plennevaux
/experiments/jqUploader/test3.html Thanks for any help you can provide. Alexandre _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: vendredi 22 juin 2007 1:01 To: jquery-en@googlegroups.com Subject: [jQuery] jquery flash plugin bug

[jQuery] Re: problem using jquery.flash plugin in my plugin

2007-06-22 Thread Alexandre Plennevaux
(); }; $('#example').flash({ src: 'jqUploader.swf' }, { version: 8 }, replace); (I haven't tested the replace function above, but something along those lines should work). Cheers, Luke Alexandre Plennevaux wrote: ok, i've found out taht in fact, the flash plugin does not accept to replace input fields

[jQuery] Hash to array

2007-06-22 Thread Alexandre Plennevaux
Warning this is a real noobie question. if you don't mind my asking: what is the simplest way to convert a hash into a string via jquery or javascript , so that obj= { var:value, othervar:value} turns into var=value,othervar=value ? thank you for your time! Alexandre Ce message Envoi est

[jQuery] Re: Hash to array

2007-06-22 Thread Alexandre Plennevaux
) { string += (i + '=' + obj[i] + ','); } // the loop leaves a comma dangling at the end of string, chop it off string = string.substring(0, string.length-1); On 6/22/07, Alexandre Plennevaux HYPERLINK mailto:[EMAIL PROTECTED][EMAIL PROTECTED] wrote: Warning this is a real noobie question. if you

  1   2   3   4   5   6   7   >