[jQuery] Re: How do I handle form submission within ThickBox?

2007-04-04 Thread Olivier Percebois-Garve
I use this in my iframe code : $(document).ready(function() { $('a').click(function(){ parent.location.href=$(this).href(); }); }); Olivier Chris W. Parker wrote: Hello, I'm using ThickBox in IFrame mode and I'm loading a form that submits to another page and

[jQuery] Re: How do I handle form submission within ThickBox?

2007-04-04 Thread Olivier Percebois-Garve
, you could instead just set the target of your links to _parent or _top. --Erik On 4/4/07, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: I use this in my iframe code : $(document).ready(function() { $('a').click(function(){ parent.location.href=$(this).href

[jQuery] index of an element

2007-05-29 Thread Olivier Percebois-Garve
Hi I'm trying to get this working: jQuery('#accordion [EMAIL PROTECTED]').click(function(){ var rank = jQuery('#accordion p').index(function(){jQuery(this).parent('p').eq(0)}); }); my markup: div id=accordion h2bla blah/h2 p input

[jQuery] Where is the button plugin ?

2007-05-30 Thread Olivier Percebois-Garve
Hi visual jquery is describing a button plugin, but I cant find it on the plugin page. Does anybody know where to find it ? Olivier

[jQuery] how to the pass element to a plugin ?

2007-05-30 Thread Olivier Percebois-Garve
Hi I am calling my plugin this way : $().accordionQuizz('accordion'); my plugin gets the param this way : jQuery.fn.accordionQuizz = function(accordion){ jQuery(accordion+' [EMAIL PROTECTED], #'+accordion+' label').each(function(){ How to do in order to call the plugin this way :

[jQuery] Re: how to the pass element to a plugin ?

2007-05-30 Thread Olivier Percebois-Garve
: jQuery.fn.accordionQuizz = function(accordion) { alert(this.length); // use the jQuery object If you call that with: $('#accordion').accordionQuizz(); then in your accordionQuizz() function, 'this' is the same as $(#accordion) --rob On 5/30/07, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: Hi

[jQuery] Re: how to the pass element to a plugin ?

2007-05-30 Thread Olivier Percebois-Garve
this: jQuery.fn.accordionQuizz = function(accordion) { this.children('[EMAIL PROTECTED], label').each(function(){ I haven't tested it though. --rob On 5/30/07, *Olivier Percebois-Garve* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: I dont get it working properly. I

[jQuery] Re: how to the pass element to a plugin ?

2007-05-31 Thread Olivier Percebois-Garve
of the element with ID myId, and will exclude that element from the results. --rob On 5/30/07, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: Thanks a lot.I'll test that tomorrow back at work.It looks correct. I never used children(), and its seems to solve issues I had on other scripts. I also dream

[jQuery] Re: More Superfish menu examples

2007-06-10 Thread Olivier Percebois-Garve
Really nice. On the multi-tier-all-horizontal-example look at the right side of the second cell in the second row. There is a 1px glitch (FF). A nice thing would be support for highlighting arbitrary nodes (to indicate the current page of the website) olivier Joel Birch wrote: Thanks!

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

2007-06-11 Thread Olivier Percebois-Garve
Its really nice even if you convinced me first that css is better for the job... Anyway good to see how evolves the soon-best-menu-ever-possible. Joel Birch wrote: Hi all, Due to overwhelming demand (well okay, two people) I have added another feature to the Superfish plugin that enables

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

2007-06-13 Thread Olivier Percebois-Garve
Hi another improvment idea: How to style specifically the parent node(s) of the current node ? Olivier On 6/12/07, Joel Birch [EMAIL PROTECTED] wrote: On 12/06/2007, at 3:13 AM, Jörn Zaefferer wrote: Thats cool, but not yet what I was looking for. I though of submenus that don't switch

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

2007-06-13 Thread Olivier Percebois-Garve
So I solved it quick'n dirty by using a new class and : $('#current').parent().parent().children('a').attr('class', 'currentlink'); On 6/13/07, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: Hi another improvment idea: How to style specifically the parent node(s) of the current node

[jQuery] Re: ANN: jQuery Paris Meetup

2007-06-17 Thread Olivier Percebois-Garve
Is there some more infos about what is planned there ? John Resig wrote: When: Sunday, June 24, 2007 - 10:30 AM Where: Hotel Helder Opera 4, Rue du Helder Paris, Île-de-France 75009 About: This is a meet up for those that use and are interested in the jQuery JavaScript Library. We'll be

[jQuery] Re: superfish variable width

2007-06-21 Thread Olivier Percebois-Garve
Percebois-Garve [EMAIL PROTECTED] wrote: Hi How to get the superfish (or suckerfish) menu to work under IE while using a variable width ? (i.e li elements having the width of their content) On my tests it produces a strange bug where the dropdown li is horizontally positionned after the end

[jQuery] Re: superfish variable width

2007-06-21 Thread Olivier Percebois-Garve
I mean getting the width of each li's content and then to give that width to the li On 6/21/07, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: could such behavior be scripited ? On 6/21/07, Su [EMAIL PROTECTED] wrote: If I recall correctly, suckerfish menus assume each of the items

[jQuery] Re: superfish variable width

2007-06-21 Thread Olivier Percebois-Garve
PROTECTED] wrote: On 22/06/2007, at 12:45 AM, Olivier Percebois-Garve wrote: I mean getting the width of each li's content and then to give that width to the li On 6/21/07, Olivier Percebois-Garve [EMAIL PROTECTED] wrote:could such behavior be scripited ? I'm sure it could be scripted. Depending

[jQuery] loop through elements and stop at first match

2007-07-09 Thread Olivier Percebois-Garve
Hi I want to loop through the jquery array of objects, stop to loop when it finds the first match, and then continue to loop with another search. In another language I would set a var found = false; before the loop and then set it to true in the loop, but with chaining I'm not sure how to do.

[jQuery] Re: loop through elements and stop at first match

2007-07-10 Thread Olivier Percebois-Garve
-- ) { var element = $foo[i]; // do something with element } -Mike *From:* Olivier Percebois-Garve I want to loop through the jquery array of objects, stop to loop when it finds the first match

[jQuery] Re: [ANNOUNCE]: clueTip Plugin Beta

2007-07-13 Thread Olivier Percebois-Garve
One cool thing is that the tooltip is being positioned out of the position of the hovered element rather than attached to the mouse cursor position. That is a sooo much more cleaner result IMO. Karl Swedberg wrote: Hey everyone, Just thought I'd let you all know that I (finally) posted a blog

[jQuery] Re: Help with Superfish drop down menu

2007-07-13 Thread Olivier Percebois-Garve
Hi Joel Just a thought, more comments in the css file of superfish would be worth since it is where a big part of the complexity of the menu system goes. Also personally, I'm not sure to understand the rules you have added to the original suckerfish css. Olivier Joel Birch wrote: Looks

[jQuery] Re: Superfish 1.2.1 3rd level IE display problem

2007-07-13 Thread Olivier Percebois-Garve
for each :hover you should have a .sfhover ... n00bert wrote: Hi, I'm using Superfish, available http://users.tpg.com.au/j_birch/plugins/superfish/ here . I've added a third level and made the changes given by Joel Birch in answer to

[jQuery] Re: Interface abandoned?

2007-07-14 Thread Olivier Percebois-Garve
Probably a stupid question, but how to retrieves these files by svn ? Glen Lipka wrote: Information on the next gen of Interface: Plugin Home: http://docs.jquery .com/UI http://docs.jquery.com/UI Discussion board specifically for it: http://groups.google.com/group/ jquery-ui

[jQuery] Re: superfish delay not working

2007-07-20 Thread Olivier Percebois-Garve
have u forgotten to include the hoverIntent plugin ? cpsengine wrote: I have a single-level css dropdown and wanted to add a delay, so I setup superfish. It's working as I can see the animation when I mouse over my menu, but the mouse delay isn't working. I think I need to add the sfHover

[jQuery] Re: IE 7/6 frozen with massive use of jquery plugins

2007-07-21 Thread Olivier Percebois-Garve
I m no specialist of such issue but you could first check if its memory related. Just browse your website and see if the memory is continuously rising.(In the task-manager) oscar esp wrote: I have intermittent error, basically IE is frozen. I can not reproduce seems that I doesn't follow a

[jQuery] trigger function when something has changed

2007-07-26 Thread Olivier Percebois-Garve
Hi I've a big legacy app on which there is jquery now. There is a 2 columns design, and when the page loads their height is being equalized. My issue is that their is lot of javascript, old and jquery style, often with inline calls, which will add or expand content and hence change the height

[jQuery] Re: [Off-Topic] CSS Combine Images

2007-07-26 Thread Olivier Percebois-Garve
This is a well-know technique. If I remember right, credits goes to http://wellstyled.com/css-nopreload-rollovers.html -Olivier Mitchell Waite wrote: I think this is a cool idea, but what is needed is an example so we can see how valuable it is. A nice example would show the slow way vs

[jQuery] Re: Split list digests for the mainlist

2007-08-03 Thread Olivier Percebois-Garve
Use thunderbird or another email client and sort your emails by thread. With that you'll be able to concentrate only on what is interesting you. David Duymelinck wrote: Hello, I think it's a good idea there are split lists but is it somehow possible to inject good ideas or decisions made

[jQuery] Why isn't there top() and left() methods in the dimension plugin ?

2007-08-28 Thread Olivier Percebois-Garve
Okay, I'm doing a lot of jQuery today so please pardon me if I'm sending too much emails here. I'm annoyed with the (otherwise great) dimension plugin because there is no direct way to get the top and left position of an element. So all over my code I have things such as :

[jQuery] Re: validation plugin : conflict with formsess because of {

2007-08-28 Thread Olivier Percebois-Garve
, David Duymelinck [EMAIL PROTECTED] wrote: Is it an option for you to not use the meta data plugin? The rules can be set without it too. $(#Form).validate({rules: {inputname: required}}); --David Olivier Percebois-Garve schreef: Hi I'm having an issue with the validation plugin

[jQuery] Re: Why isn't there top() and left() methods in the dimension plugin ?

2007-08-28 Thread Olivier Percebois-Garve
; }; jQuery.fn.top = function() { return this.offset ({scroll:false}).top; }; -- Brandon Aaron On 8/28/07, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: Okay, I'm doing a lot of jQuery today so please pardon me if I'm sending too much emails here. I'm annoyed with the (otherwise great

[jQuery] Re: validation plugin : conflict with formsess because of {

2007-08-28 Thread Olivier Percebois-Garve
are ignored), the meta data plugin would probably be have to be modified. On Aug 28, 1:25 pm, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: Thanks for your answers. Emil you are right at saying that it is not a jquery issue. Its even more a formsess issue than a smarty issue

[jQuery] Best of both jquery validate and jqueryyav

2007-08-30 Thread Olivier Percebois-Garve
Hi I have a dilema between jquery validate and jqueryyav. I am using validate which offers great flexibility in the error placement, because I can pass a function to it : errorPlacement: function(error, element){ jqueryYAV offers the implies that I need, but I cannot pass a function to

[jQuery] Re: Best of both jquery validate and jqueryyav

2007-08-30 Thread Olivier Percebois-Garve
/storage/yav/idea1.html Maybe you have the idea using validation plugin and you don't see that you can do similar things using other methods ;-) Jose Olivier Percebois-Garve escribió: Hi I have a dilema between jquery validate and jqueryyav. I am using validate which offers great

[jQuery] Re: Best of both jquery validate and jqueryyav

2007-08-30 Thread Olivier Percebois-Garve
methods ;-) Jose Olivier Percebois-Garve escribió: Hi I have a dilema between jquery validate and jqueryyav. I am using validate which offers great flexibility in the error placement, because I can pass a function to it : errorPlacement: function(error, element){ jqueryYAV

[jQuery] where is the the form input/select plugin ?

2007-09-05 Thread Olivier Percebois-Garve
Hi I remember of a plugin that was making a selectbox editable. A sort of mix of input type=text / and select Does anybody see what I am talking about and where it is located ? thx -Olivier

[jQuery] Re: How to turn keywords into links?

2007-09-14 Thread Olivier Percebois-Garve
just a thought, but for SEO you'd better to do this server-side... -Olivier Glen Lipka wrote: Start with the Search Highlight plugin. http://www.jquery.info/spip.php?article50 http://www.jquery.info/spip.php?article50 Option 1. Change the way the plugin works to add A links instead of

[jQuery] Re: ANNOUNCEMENT: Chili 1.9 much faster

2007-09-26 Thread Olivier Percebois-Garve
Sean, Nice plugin, love its simplicity. on IE I cant see the text area with the insertion code for the head part. Also I found it ennoying in your exemple that its only the link that is clickable, not the whole tab. my 2 p feedback -olivier Sean Catchpole wrote: That's great! Excellent

[jQuery] My Superfish disappears for no reason

2007-10-03 Thread Olivier Percebois-Garve
Hi all, hi joel, My Superfish submenu are disappearing for no reason. The submenu comes out, but it often disappers even if the user is still hovering the buttons. I can't find out why. here is the url : http://prod.oberweis.interact.lu/fr/ anybody has an idea about the reason of this ? thanks

[jQuery] Re: My Superfish disappears for no reason

2007-10-04 Thread Olivier Percebois-Garve
Thanks guys I solved the issue just before leaving yesterday at 18 o'clock (15 hours ago) and could not check your answers at home in the meaning time. My issue was due to a duplicate call to the menu. Still thanks a lot Joel for pointing me to the error in the params I use. BTW, I have 2 piece

[jQuery] Re: My Superfish disappears for no reason

2007-10-04 Thread Olivier Percebois-Garve
object, extending it, all this in a namespaced way. That is a vocabulary coding practice that I do not master, but I'm getting closer. Thanks a lot. really. -Olivier On 10/4/07, Joel Birch [EMAIL PROTECTED] wrote: On 10/4/07, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: The first one

[jQuery] Re: More Superfish Questions

2007-10-06 Thread Olivier Percebois-Garve
What do you mean by collapsible ? sounds like an accordion to me... Superfish is an improved version of suckerfish. Suckerfish makes pure css menu compatible with IE. Pseudo-classes like :hover are only possible on a elements in IE. Pure css menus require :hover to be possible on li elements.

[jQuery] Re: jqGrid new version

2007-10-07 Thread Olivier Percebois-Garve
Very slick work tony May I suggest to add a loading icon (maybe with status of the queue) ? I have an erratic Internet connection and nothing tells me if the next pane will eventually be loaded. -Olivier Tony wrote: Rey, Thank you for this note. It is my bad. It is corrected now. Tony

[jQuery] using a var in both functions of a hover(over, out)

2007-10-10 Thread Olivier Percebois-Garve
Hi I have a code simplified like this : jjQuery.fn.simpleTooltip = function(o){ $(this).hover( function(){ //code },function(){ //code }); } I want to store something in the first function (over) and use it in the second (out). I'm almost sure it is possible but all my

[jQuery] Re: Superfish, swfObject, z-index, and (of course) IE

2007-10-11 Thread Olivier Percebois-Garve
Hi this seems due the IE z-index bug see http://verens.com/archives/2005/07/15/ie-z-index-bug/ olivier jon randahl wrote: First, let me say thank you to Joel for making the new CSS for Superfish so easy to configure now! All those comments make such the difference! and Second, here's my

[jQuery] Re: timing of animations

2007-10-12 Thread Olivier Percebois-Garve
(){$(this).fadeOut('fast').dequeue()}); }); }); -Oliver Olivier Percebois-Garve wrote: Hi list I am trying to make nice effects on hovering tabs. I have a working animations, but it break when the menu is hovered too fast, and fire the follow error if firebug

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-13 Thread Olivier Percebois-Garve
Hi I'm hijacking your thread to challenge you ( if its possible ;-) ). I 'm trying (with no success) to do the same as you, but fades in addition: on over : hovered image fades in - tab goes up on out : tab goes down - image fades out I tried a lot of different ways, with queue() dequeue(),

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-15 Thread Olivier Percebois-Garve
Hi although there is many things unclear to me in animations, :animated seems to work right. I suggest the addition of a case around the code in your slideTabs() function : if (!$this.next().is(':animated')) With console.log(), I noticed that over events are being fired far more often

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-16 Thread Olivier Percebois-Garve
again for testing and contributing! Much appreciated. --Karl _ Karl Swedbergwww.englishrules.comwww.learningjquery.com On Oct 15, 2007, at 4:29 PM, Olivier Percebois-Garve wrote: Hi although there is many things unclear to me in animations, :animated seems to work right. I

[jQuery] Superfish and PNG transparency for IE

2007-10-17 Thread Olivier Percebois-Garve
Hi I have png background image for a drop-down menu, made using superfish. Both jquery png plugins are breaking, when applied to it. pngFix works, but gives a potato shape to my image. ifixpng simply breaks and produces js errors. Any thoughts ? I'll try to debug it, but I hate so much js in

[jQuery] Re: SuperFish Menu Flash

2007-11-02 Thread Olivier Percebois-Garve
You definitely need to include bgiframe, because without you have errors, and therefore the swfobject code cannot run. gracetec wrote: Hi rolfsf, Thanks for your response. I have re-checked all the code against a working example and the only difference appears to be the way in which the flash

[jQuery] Transparent PNG backgrounds with superfish

2007-11-15 Thread Olivier Percebois-Garve
hi I am trying to get transparent png background to run on the drop-dowm menus of superfish. I tried unsuccessfully to the 2 related jquery plugins : pngfix and ifixpng. Both are resulting in the following error : 'filter.match' is nul or not an object Those scripts are AFAIK hiding the

[jQuery] Re: Transparent PNG backgrounds with superfish

2007-11-19 Thread Olivier Percebois-Garve
Hi Joel, I just want to thank you for your answer. I have no Internet at home anymore so I'm pretty slow with feedback... Olivier On Nov 15, 2007 10:06 PM, Joel Birch [EMAIL PROTECTED] wrote: Hi Olivier, AFAIK, IE can only apply one filter at a time, so when you apply the PNG fix that's

[jQuery] Re: JQZoom Updated

2007-12-20 Thread Olivier Percebois-Garve
Hi Is the zoomed image being ajax loaded each time the thumbnail is hovered ? I have a slow and erratic Internet connection, and when I hover the thumb, I just see a little brown square in the inner top of a big grey square. It then takes a few seconds before to see the zoomed image. You may

[jQuery] Re: Need input on best approach to this type of menu feature

2007-12-26 Thread Olivier Percebois-Garve
What you are looking for is a tabs system triggered by the onmouseover event , is it? I have built something like that but I did not make it into a plugin : http://www.electris.lu/electris_net/service/conseil_en_energie.php Olivier Rick Faircloth wrote: Hi, all... I'd like to request some

[jQuery] Re: Using JQuery with PHP Frameworks

2008-01-07 Thread Olivier Percebois-Garve
hi I used jquery with cake. In cake 1.1 Prototype is used as javascript helper for AJAX, etc but you are free not to use it. I think there is a helper that has be made specifically for jquery, a port of phpQuery if I remember right. Personally I do not like much helpers to generate js code, so

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-10 Thread Olivier Percebois-Garve
Hi On Opera 9.25 the corners of the green titles is not at the right position. Its something like 12 px too much to right and 4px too much down. On the example BORDER: 1 DISPLAY: INLINE the 4 corners seems to be too much inside of the block and should move of 2px approximativelly. weepy

[jQuery] Re: [TABS plugin RELATED] Look mum, TABS layout only with CSS !!

2008-01-15 Thread Olivier Percebois-Garve
Hi I Just had a quick look in Opera 9.25 and it is not working... Olivier Enrique Meléndez Estrada wrote: Looking at official TABs plugin, I realized that the HTML structure is not very natural. It uses a list (UL) of tab headers follow by tab bodies (DIV). Normally, what you get from your

[jQuery] Re: Superfish 1.4.1 update released

2008-01-30 Thread Olivier Percebois-Garve
Hi Joel, I'll try to give you some feedback. First some remarks and questions and then a bug report : You may change some filenames. For instance helperPlugin.js to hoverIntent.js or vertical.css to superfish-vertical.css I think it would be nice to put an exemple menu at the top of the

[jQuery] Plugin method

2008-02-07 Thread Olivier Percebois-Garve
Hi all I'm struggling to get a private function running in a plugin. Here are the 2 pieces of code, first the running version then the more elegant but broken. Obviously there is something that I have understood wrong in the pattern. Can somebody point me to a better way to do this ? //fully

[jQuery] Re: Plugin method

2008-02-11 Thread Olivier Percebois-Garve
}); } ); } }); } })(jQuery); On Feb 7, 2008 3:50 PM, Richard D. Worth [EMAIL PROTECTED] wrote: On Feb 7, 2008 6:54 AM, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: $li.each(function(o, i

[jQuery] Re: [ANNOUNCE] markItUp! 1.0 (former jTagEditor) is finally released!

2008-03-24 Thread Olivier Percebois-Garve
Hi Jay, Great script! I think that your menu has the dancing syndrome. I recently discovered the fix for this from Remy Sharp's post coda bubble. Its untested, but the following should fix it, or at least, you'll get the point: -Olivier hideDelayTimer = null; $(.menu a).hover(function() {

[jQuery] Re: Tabs, AJAX, and wanting to degrade safely

2008-03-24 Thread Olivier Percebois-Garve
Hi, I have not understood your examples, but the classical approach with ajax, from a server side point of view, is to send the content of the page with header and footer if it is an http request and to send only the content if it is ajax. I think that you can detect an ajax call from the

[jQuery] Re: event fired after SlideDown

2008-03-25 Thread Olivier Percebois-Garve
As I am not Drupal user difficult to understand what you can do or cant. Basically with jQuery animations you can pass a function as last param and it will be executed after: $(p).slideDown(slow,function(){ alert(Animation Done.); }); If you cant change it, it suggest you to use setTimeout

[jQuery] Re: event fired after SlideDown

2008-03-26 Thread Olivier Percebois-Garve
Maye you can use setInterval and periodically test if your elem is visible ? On Tue, Mar 25, 2008 at 5:40 PM, Yuval Hager [EMAIL PROTECTED] wrote: On Mar 25, 3:35 pm, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: As I am not Drupal user difficult to understand what you can do or cant

[jQuery] Strange bold look after a show in IE6

2008-03-28 Thread Olivier Percebois-Garve
Hi all, I'm using animate({opacity: 1}); It produces a strange effect on IE6 where the text appears sort of bold (or sort of duplicated) and a little dirty. With show() I see this effect during the transition, but when it is finished it looks ok. With animate({opacity: 1}); it remains dirty after

[jQuery] Re: Strange bold look after a show in IE6

2008-03-29 Thread Olivier Percebois-Garve
Thanks guys for extensive answers Setting a background partially solved the issue. I'll investigate more on this back at work on Monday. It seems that YUI is slightly better on this than jQuery. http://icant.co.uk/sandbox/msieopacityissue/ Mike, I will test your plugin, once I get back to a

[jQuery] Re: Superfish 1.4.3 released - now with new documentation

2008-07-04 Thread Olivier Percebois-Garve
This is really nice Joel. The css are well structured and I think easy to understand. Since it is a prerequisite to use superfish, perhaps you may consider adding a link to a pure css menu article (or to an exemple in your site). Overall the superfish package is very slick to use. I have

[jQuery] Re: Event does not trigger after $(divasdfasdf/div).insertBefore($(this).parent());

2008-08-19 Thread Olivier Percebois-Garve
have look at http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F Probably your code runs first $(div#add_comments).click( ... then it insert the new html. So when $(div#add_comments).click runs, there is nothing to be bound. Then the new

[jQuery] Re: How to retrieve jQuery.query?

2008-08-31 Thread Olivier Percebois-Garve
the appropriate name is : this Tzury wrote: Say a user called $('div.foo') I would like to get this 'div.foo' from within my plug-in context. I look through the code and couldn't find a property which contain this data; I was thinking that 'query' is the appropriate name for this property

[jQuery] jquery-ui - draggables within a div with position: absolute

2008-10-13 Thread Olivier Percebois-Garve
Hi I have draggables within a div that is absolutely positioned. When I click the draggable, the cloned images appears above the mouse pointer. To be precise, the distance between the draggable and the mouse pointer is the same as the distance between to top of the page and the top of the

[jQuery] Re: jQuery Uploader Flash player 10 fix

2008-10-30 Thread Olivier Percebois-Garve
Hi any chance to see the work in progress ? demo, (even partially buggy) ? svn ? Olivier On Tue, Oct 28, 2008 at 10:25 AM, Crazy-Achmet [EMAIL PROTECTED]wrote: I'm really lookin forward to the new version!!! It's awesome that you're still workin' on it! ;)

[jQuery] Re: Am I using 'this' too often?

2008-11-10 Thread Olivier Percebois-Garve
you may want to have a look here http://docs.jquery.com/Plugins/Authoring On Mon, Nov 10, 2008 at 5:20 PM, George [EMAIL PROTECTED] wrote: Being newbie in JavaScript I am trying to code my own helper object that does pagination. So here is a snippet of my code. MyData.prototype = {

[jQuery] Re: Am I using 'this' too often?

2008-11-10 Thread Olivier Percebois-Garve
to nail down the use of 'this' in JavaScript as it's a bit different from what I am used to. George. On Nov 10, 11:43 am, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: you may want to have a look herehttp://docs.jquery.com/Plugins/Authoring On Mon, Nov 10, 2008 at 5:20 PM, George

[jQuery] Re: jQuery Uploader Flash player 10 fix

2008-11-20 Thread Olivier Percebois-Garve
mmh they confirm that swfupload is currently broken. I also experienced that its the case. On Thu, Nov 20, 2008 at 10:47 AM, Josip Lazic [EMAIL PROTECTED] wrote: I found this jQuery+Flash uploader, as author say - I'ts quick and dirty, but it gets job done.

[jQuery] Re: Form Editor like WUFOO.com with JQUERY??

2008-11-28 Thread Olivier Percebois-Garve
jQuery itself has no drag and drop feature. That kind of interaction is within jQuery-ui which is built on top of jQuery. On Fri, Nov 28, 2008 at 3:17 PM, temega [EMAIL PROTECTED] wrote: jQuery has great Drag and Drop features On Nov 28, 10:27 am, eutelsat [EMAIL PROTECTED] wrote:

[jQuery] Re: TableSorter vs Zebra Stripes

2008-12-09 Thread Olivier Percebois-Garve
The zebra code you have seems to be based on another library (Prototype ?), so it wont run using without it. Anyway, there's a zebra plugin included by default in the tablesorter. just do: $(table).tablesorter({ widgets: ['zebra','repeatHeaders'] }); Olivier On Tue, Dec 9, 2008 at 9:01

[jQuery] Re: TableSorter vs Zebra Stripes

2008-12-09 Thread Olivier Percebois-Garve
sry. wrong paste: $(table).tablesorter({ widgets: ['zebra'] }); On Tue, Dec 9, 2008 at 9:18 PM, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: The zebra code you have seems to be based on another library (Prototype ?), so it wont run using without it. Anyway, there's a zebra plugin

[jQuery] Re: TableSorter vs Zebra Stripes

2008-12-09 Thread Olivier Percebois-Garve
:19 PM, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: sry. wrong paste: $(table).tablesorter({ widgets: ['zebra'] }); On Tue, Dec 9, 2008 at 9:18 PM, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: The zebra code you have seems to be based on another library (Prototype

[jQuery] Re: TableSorter vs Zebra Stripes

2008-12-09 Thread Olivier Percebois-Garve
, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: ok. do that instead: script src=/1A/JS/jquery-1.2.6.min.js type=text/javascript/script script src=/1A/JS/tablesorter/jquery.tablesorter.js type=text/javascript/script script language=JavaScript type=text/JavaScript $(document).ready(function

[jQuery] Re: TableSorter vs CMS

2008-12-09 Thread Olivier Percebois-Garve
Atz some point you've to sum up what is supposed to happen and isolate the faulty part. No js is running. the row mouseover is probably css. So you've to find out why. A wrong path to the jQuery files may be a guess. Anyway go through the different steps: -is jquery properly included (you may

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread Olivier Percebois-Garve
There is a lot to grasp for you, but what you are doing is rather simple. Forget the AJAX callback and onSuccess. This is the answer to a common problem that you dont have, since your not using any AJAX. For firebug, you need to activate the console, and look there if there is no js error.

[jQuery] Re: TableSorter vs CMS

2008-12-10 Thread Olivier Percebois-Garve
jQuery in noConflict mode. On Wed, Dec 10, 2008 at 2:01 PM, David Blomstrom [EMAIL PROTECTED]wrote: On Wed, Dec 10, 2008 at 4:14 AM, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: There is a lot to grasp for you, but what you are doing is rather simple. Forget the AJAX callback

[jQuery] Re: jQuery becomes Unresponsive

2008-12-16 Thread Olivier Percebois-Garve
You should have a look at event delegation, currently you are attaching 2 event on each row. So if you have a lot of rows, its memory/cpu heavy. On Tue, Dec 16, 2008 at 11:52 AM, stephen barto...@gmail.com wrote: Hi, I have a table of data made from divs, and the mouse roll-over

[jQuery] Re: History Plug-In

2008-12-16 Thread Olivier Percebois-Garve
http://stilbuero.de/jquery/history/ What you want to do is ok, you'll just need to change the window.location.* hash* in the callback of your ajax request. On Tue, Dec 16, 2008 at 5:12 PM, russellneufeld russellneuf...@gmail.comwrote: Hi all, This question has been asked before but there

[jQuery] Re: libraries

2008-12-17 Thread Olivier Percebois-Garve
just is a JSON! jQuery read easy this answer and put data in the component previously created. You know? Thanks again for your interest! Dirceu Barquette 2008/12/17 Olivier Percebois-Garve perceb...@gmail.com using a MVC framework such as cakephp or zend framework, you can put the html

[jQuery] Re: libraries

2008-12-17 Thread Olivier Percebois-Garve
Aptana does a good job for auto completion. I you weant to learn the api for yourself, I think that visualjquery.com is excellent, I almost always have it open whilst developing. On Tue, Dec 16, 2008 at 8:22 PM, Dirceu Barquette dirceu.barque...@gmail.com wrote: Hi, I'd like to know,

[jQuery] Re: libraries

2008-12-17 Thread Olivier Percebois-Garve
/%7Edirceu/isabela_draw/jquery.isabela_draw(nightly version) Thank you very much! 2008/12/17 Olivier Percebois-Garve perceb...@gmail.com Don't worry with your english, I'm not a native. So you want to know how to make json request ? Do you still have a question, or do you want just

[jQuery] Re: libraries

2008-12-17 Thread Olivier Percebois-Garve
that it is possible (but still mixing style with logic). Components needs constructor method to build itself. Others methods and attrs comes latter. Again, sorry my english... I hope you understand the semanthic of my words. Thanks, Dirceu Barquette 2008/12/17 Olivier Percebois-Garve perceb

[jQuery] Re: libraries

2008-12-17 Thread Olivier Percebois-Garve
applications. Or a CMS!!! Thanks a lot!!! Dirceu Barquette 2008/12/17 Olivier Percebois-Garve perceb...@gmail.com Dirceu is this a different question ? in that case you should start a new thread with a different title also if you are using a tool for automatic translation, just mention it. I'm

[jQuery] Re: libraries

2008-12-18 Thread Olivier Percebois-Garve
://calango.barquettenet.net/%7Edirceu/isabela/jquery.isabela_draw 2008/12/17 Olivier Percebois-Garve perceb...@gmail.com quick comments: - think your plugin is tied to specific ids on each node. This should not be necessary. - the plugin is calling directly image to decorate the tree, I

[jQuery] Re: a question to animate

2008-12-18 Thread Olivier Percebois-Garve
You can chain some css changes, to happen before, or after the animation. I think that you need to set it to right : 0, and only after that animate it. without a link to your stuff would be nice though On Thu, Dec 18, 2008 at 2:23 PM, Ante Damjanovic damjano...@medwell.atwrote: Hello, i

[jQuery] Re: a question to animate

2008-12-18 Thread Olivier Percebois-Garve
err . the without is a pasting error. sorry. On Thu, Dec 18, 2008 at 5:26 PM, Olivier Percebois-Garve perceb...@gmail.com wrote: You can chain some css changes, to happen before, or after the animation. I think that you need to set it to right : 0, and only after that animate it. without

[jQuery] Re: Internet Explorer - my jQuery is not working

2009-04-17 Thread Olivier Percebois-Garve
hybris77 half of the web resources about web development is about issues related to IE. jQuery is correcting quite a few of them. Now you are having a specific issue with IE7, this is no surprise but there is no way to guess what it is. If you don t describe your issue, as morningZ said,

[jQuery] Re: Your download is corrupted

2009-04-28 Thread Olivier Percebois-Garve
Hi Annie Apparently you are very confused. The right place to solve your issue is : http://joomlacode.org/gf/project/superfishmodule/forum/?action=ForumBrowseforum_id=10474 You should discuss your issues with the Joomla extension developer that has created this Joomla module : Cy Morris The

[jQuery] Re: looking for a jquery comparison to this mootools image menu

2009-04-28 Thread Olivier Percebois-Garve
http://www.jeremymartin.name/projects.php?project=kwicks B wrote: please see the link. http://www.phatfusion.net/imagemenu/ Anyone know of a jquery option that is similar to this mootools image menu?

[jQuery] empty() is faking ?

2009-05-04 Thread Olivier Percebois-Garve
Hi I'm puzzled with this : http://pastebin.me/49fef93928aff (in firebug click on the jquery object, then expand 0) Using empty() or remove() on the lis of a ul, it seems that jQuery is faking to remove them, i.e the lis will not be accessible by jQuery anymore, but in reality the childnodes

[jQuery] Re: empty() is faking ?

2009-05-04 Thread Olivier Percebois-Garve
Ricardo wrote: On May 4, 11:33 am, Olivier Percebois-Garve perceb...@gmail.com wrote: Hi I'm puzzled with this :http://pastebin.me/49fef93928aff (in firebug click on the jquery object, then expand 0) Using empty() or remove() on the lis of a ul, it seems that jQuery is faking to remove

[jQuery] Re: empty() is faking ?

2009-05-04 Thread Olivier Percebois-Garve
in the inspector. The printed line will not, it will keep showing Object a=1, ignore it. On May 4, 3:30 pm, Olivier Percebois-Garve perceb...@gmail.com wrote: Ricardo wrote: On May 4, 11:33 am, Olivier Percebois-Garve perceb...@gmail.com wrote: Hi I'm puzzled with this :http

[jQuery] Ghost data using jQuery.data

2009-06-16 Thread Olivier Percebois-Garve
Hi I am using jQuery data store and wished to make deep copy of elements, including all the data stored with jQuery. So I'm using the allData plugin provided here : http://stackoverflow.com/questions/999535/how-to-get-from-an-element-all-the-data-set-using-the-data-method also I made a

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread Olivier Percebois-Garve
Hi Prototype used to support IE5.5, but I don't know for the current versions. It may be easier than to do everything by hand and workaround weird browser bugs by yourself Rodrigo wrote: Hi everyone! I've been doing some research and I've found different opinions about the compatibility of

  1   2   >