[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Alexandre Plennevaux
Rick, I read the tutorial in its entirety before commenting. This document lacks structure and not only that, I could have pointed the many english mistakes, because obviously this was written quite fast, and i'm sure with a little more care and some more mindset framing, it should be perfect. I

[jQuery] Re: Code migration from js to jquery

2008-12-11 Thread Alexandre Plennevaux
try this: var innerDocument = $('#indexIframe).get(0).contentDocument; alert($(#cab, innerDocument).val()); On Thu, Dec 11, 2008 at 12:48 PM, m.ugues [EMAIL PROTECTED] wrote: Is there an elegant way to migrate this piece of code var innerDocument = parent.document.getElementById

[jQuery] Re: Code migration from js to jquery

2008-12-11 Thread Alexandre Plennevaux
in case it doesn't help, here is aa blog post that describes (read comments) http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/ On Thu, Dec 11, 2008 at 1:00 PM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: try this: var innerDocument = $('#indexIframe).get(0

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
give us the url or the main js code, hard to be helpful without info. On Wed, Dec 10, 2008 at 10:22 AM, JQueryProgrammer [EMAIL PROTECTED] wrote: Try this: $(function() { // your code goes here. }); Also while including the jquery file, write it as: script type=text/javascript

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
can you cut and paste the full html on the page, and show the javascript external file links. that should be enoughf thanks. On Wed, Dec 10, 2008 at 10:36 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: ok, the code is: var flag=false; $().ready(function(){ $(div#peik).hide();

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: can you cut and paste the full html on the page, and show the javascript external file links. that should be enoughf thanks. On Wed, Dec 10, 2008 at 10:36 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: ok, the code is: var flag=false

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
so, the top of the code should be: var flag=false; $(document).ready(function(){ $(div#peik).hide(); $('div#cardbanki div').hide(); $('div#pardakht div').hide(); }); On Wed, Dec 10, 2008 at 10:53 AM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: in http

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
On a side note: replace all your div#myid by #myid, it will give a performance boost, since you'll then be using the getElementById instead of first selecting all divs, then finding the one with the id. On Wed, Dec 10, 2008 at 10:57 AM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: so, the top

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Alexandre Plennevaux
1./ are you sure the div with id=peik is present on the page? 2./ what is that other script for, it'sreally not good, it's a big eval() call, eval is evil !! LAb[au] _ laboratory for architecture and urbanism Alexandre Plennevaux Lakensestraat 104 Rue de Laeken Brussel 1000 Bruxelles België

[jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2008-12-08 Thread Alexandre Plennevaux
quite a cool demo, thanks for sharing, works fine here on PC: windows XP SP3 Firefox 3.0 On Mon, Dec 8, 2008 at 2:47 PM, Nicolas R [EMAIL PROTECTED] wrote: Yes I know, I haven't tested it on IE and I have done nothing for supporting it (no css hacks or conditional comments). I am sure that

[jQuery] Re: jQuery.uploader released: Flash based jQuery uploader

2008-12-08 Thread Alexandre Plennevaux
Methen, heil to a fellow php coder: ) you need to use the callbacks provided by gilles'script, especially these ones: http://jquery.webunity.nl/jQuery.uploader/docs/callbacks#fileUploadStarted fileUploadStarted callback will launch when the upload actually start, so theer, feed it with a

[jQuery] Re: jQuery.uploader released: Flash based jQuery uploader

2008-12-04 Thread Alexandre Plennevaux
yup excellent work Gilles ! On Thu, Dec 4, 2008 at 5:13 AM, web_dev123 [EMAIL PROTECTED] wrote: Hey Just checked the plugin. Looks awsome. I'll make sure to implement on my next project! Keep it up. J

[jQuery] Re: jQuery.uploader released: Flash based jQuery uploader

2008-12-04 Thread Alexandre Plennevaux
personally never found an easy way to tackle this using flash to upload files. And it's my main gripe against them. On Thu, Dec 4, 2008 at 9:28 AM, Alexandre Plennevaux [EMAIL PROTECTED]wrote: yup excellent work Gilles ! On Thu, Dec 4, 2008 at 5:13 AM, web_dev123 [EMAIL PROTECTED] wrote

[jQuery] Re: Image uploader / manager

2008-11-20 Thread Alexandre Plennevaux
works well ! On Thu, Nov 20, 2008 at 10:36 AM, netvibe [EMAIL PROTECTED] wrote: What do you think about http://netvibe.nl/imagemanager/ It's all jquery / php based.. U can upload multiple files at once (swf upload) and edit the files, rename, remove, etc, etc..

[jQuery] Re: Morph between 2 classes

2008-11-13 Thread Alexandre Plennevaux
ah, ok, thanks a lot Richard. I think the double Effects entries in the documentation make it confusing. Would be nice to integrate both in a single page, specifying which needs ui.js, which does not. On Thu, Nov 13, 2008 at 1:56 PM, Richard D. Worth [EMAIL PROTECTED] wrote: See

[jQuery] Re: Morph between 2 classes

2008-11-13 Thread Alexandre Plennevaux
://docs.jquery.com/UI/Effects - Richard On Thu, Nov 13, 2008 at 8:00 AM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: ah, ok, thanks a lot Richard. I think the double Effects entries in the documentation make it confusing. Would be nice to integrate both in a single page, specifying which needs

[jQuery] Re: jqRevolve - new, simplistic carousel-like plugin released!

2008-11-13 Thread Alexandre Plennevaux
, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hello brice, do you think this would be possible with your plugin? :http://www.lisapram.com Alexandre, That's a VERY COOL effect. I think I could mimick that functionality, although would need to add callback support to jqRevolve FIRST

[jQuery] Re: blockUI:

2008-11-13 Thread Alexandre Plennevaux
hi Georges, yes, but the problem is that i don't know which element is concerned by the call (unless i hardcode it each time of course, but that's what i would like to avoid). Thanks for your input nonetheless. On Thu, Nov 13, 2008 at 6:12 PM, George [EMAIL PROTECTED] wrote: you just need to

[jQuery] Re: jQuery + AWS = Fun (and a new search engine)

2008-11-13 Thread Alexandre Plennevaux
veeery nice ! at last, some comfy interface to see the book ! would be cool to not be leaving the app once you click on a book cover. dunno if it is possible, though On Thu, Nov 13, 2008 at 7:35 PM, JohnForsythe [EMAIL PROTECTED] wrote: Hey, Just wanted to show off my new search engine,

[jQuery] Re: jqRevolve - new, simplistic carousel-like plugin released!

2008-11-12 Thread Alexandre Plennevaux
nice Brice, very efficient ! one feature request: i'm not fond of continuous scrolling. would be nice to have an option to specify whether it should scroll pixel per pixel or from each item's x position to the next's, so that you don't have half-showing images. If you implement this feature,

[jQuery] Re: jqRevolve - new, simplistic carousel-like plugin released!

2008-11-12 Thread Alexandre Plennevaux
Brice, i didn't dig into your code, but the animation is not very fluid on the demo page. did you use the scrollLeft javascript command? ( http://www.maconstateit.net/tutorials/JSDHTML/JSDHTML14/jsdhtml14-03.htm ) On Thu, Nov 13, 2008 at 12:05 AM, Alexandre Plennevaux [EMAIL PROTECTED] wrote

[jQuery] Re: jqRevolve - new, simplistic carousel-like plugin released!

2008-11-12 Thread Alexandre Plennevaux
, Alexandre Plennevaux [EMAIL PROTECTED] wrote: nice Brice, very efficient ! one feature request: i'm not fond of continuous scrolling. would be nice to have an option to specify whether it should scroll pixel per pixel or from each item's x position to the next's, so that you don't have half

[jQuery] [ showcase ] lisapram.com - interactive barcode

2008-11-11 Thread Alexandre Plennevaux
Friends, That's it, i digested your comments, and now the website is launched. Thank you to john and every one of the jquery team for making such a great library. Special thanks to the jquery community for providing me with such useful feedback ! the website: http://lisapram.com/ my blog

[jQuery] Re: How to do anything after animate finished

2008-11-11 Thread Alexandre Plennevaux
activate the button in a callback function after the animate var isClickable = true; right.click(function() { if(ul.css('left') != (maxMove * -1) + 'px' isClickable) { isClickable = false;

[jQuery] Re: document Ready function in the Ajax Response

2008-11-11 Thread Alexandre Plennevaux
instead of loading script, use the livequery plugin: http://brandonaaron.net/docs/livequery/ On Tue, Nov 11, 2008 at 12:54 PM, David Wu [EMAIL PROTECTED] wrote: could you pose some of your code? On Tue, Nov 11, 2008 at 6:30 PM, ravithokala [EMAIL PROTECTED] wrote: Hi, I have an

[jQuery] Re: [ANNOUNCEMENT] jquery.timepickr.js: first official release

2008-11-11 Thread Alexandre Plennevaux
impressive, congratz ! On Tue, Nov 11, 2008 at 3:34 PM, h3 [EMAIL PROTECTED] wrote: Hi everyone, Yesterday I released the first public release of my jquery.timepickr plugin. I've posted it on the jQuery plugin page: http://plugins.jquery.com/project/jquery-timepickr Home page:

[jQuery] Re: How to do anything after animate finished

2008-11-11 Thread Alexandre Plennevaux
my pleasure :) On Tue, Nov 11, 2008 at 12:53 PM, David Wu [EMAIL PROTECTED] wrote: Fantastic, thanks a lot On Tue, Nov 11, 2008 at 7:32 PM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: activate the button in a callback function after the animate var isClickable = true

[jQuery] Re: jQuery Uploader Flash player 10 fix

2008-11-10 Thread Alexandre Plennevaux
Gilles, you might be interested in this to debug IE if you don't own a copy of visual studio, or don't want to set up the whole x gigs of it :) : http://www.berniecode.com/blog/2007/03/08/how-to-debug-javascript-with-visual-web-developer-express/ you only need visual web studio express, and it

[jQuery] Re: please check website before launch

2008-11-10 Thread Alexandre Plennevaux
/ my blog post (if you want to know more about the ideas behind): http://www.pixeline.be/blog/2008/new-website-lisa-pram/ On Sat, Nov 1, 2008 at 11:24 PM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Hi Alexandre, very interesting approach, this internal dialog that you report. Thanks

[jQuery] Re: Open iframe Link in a iFrame - jQuery ThickBox

2008-11-09 Thread Alexandre Plennevaux
that's the normal behaviour of thickbox, if i understand your question correctly... On Sun, Nov 9, 2008 at 8:35 PM, JKICK [EMAIL PROTECTED] wrote: Any help please... On Oct 31, 3:40 pm, JKICK [EMAIL PROTECTED] wrote: Hi, I have an Orkut application which is iFrame. I have this parent

[jQuery] Re: Livequery not working with jQuery 1.2.6

2008-11-07 Thread Alexandre Plennevaux
how about using the latest version of livequery (1.0.2) ? http://plugins.jquery.com/node/1088 I use it with jquery 1.2.6 on several projects without issue. On Fri, Nov 7, 2008 at 9:39 PM, ksimpson [EMAIL PROTECTED] wrote: I'm trying to use livequery 1.0.1 with jQuery 1.2.6 and am getting

[jQuery] Re: My first plug in. Need comments.

2008-11-06 Thread Alexandre Plennevaux
Hi Georges ! excellent way to learn. personally, i would use toggleClass() (http://docs.jquery.com/Attributes/toggleClass#class) and have the color set in the CSS file. As a rule, try always to use each technology for what it was meant: html data css styling javascript behaviour so it

[jQuery] Re: traversing with jQuery - complex selector causing brain pain

2008-11-06 Thread Alexandre Plennevaux
please post your html markup. thx On Thu, Nov 6, 2008 at 6:45 PM, w1ntermut3 [EMAIL PROTECTED] wrote: My nav bar consists of a single UL containing LI elements that each contain a single A. Well, most of them do. Some LI elements contain a further UL as well as the A: these submenu UL

[jQuery] Re: please check website before launch

2008-11-01 Thread Alexandre Plennevaux
work! Alexandre Plennevaux wrote: hi ricardo, here is my try at it, let me know if it is better. What i did is : - load the first image of each set (as it is needed for the hover state) - use a placeholder.gif file put as src attribute value for all images, the real src being stored

[jQuery] Re: please check website before launch

2008-11-01 Thread Alexandre Plennevaux
Hi Alexandre, very interesting approach, this internal dialog that you report. Thanks for it. I could propose a short introduction to address this initial what now?. Basically, what needs to be said is : move your mouse over the barcode lines to access lisa pram's photo sets. You can use the

[jQuery] Re: please check website before launch

2008-10-31 Thread Alexandre Plennevaux
first images for each set, an arbitrary number, then load the rest on demand as each set is opened. Simple and effective, without wasting bandwidth, and should be easier to do. On Oct 30, 8:22 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: @criteriadesign Once you have done that, you just

[jQuery] Re: jqModal iframe closing 2

2008-10-31 Thread Alexandre Plennevaux
i'd say simply replace the iframe href attribute value onHide using blank.html or # On Fri, Oct 31, 2008 at 6:16 PM, Yessica [EMAIL PROTECTED] wrote: Ok,this is an situation. I have an page that loads over jqModal a page in that iframe, its easy for me that from that page close modal and

[jQuery] Re: please check website before launch

2008-10-30 Thread Alexandre Plennevaux
to describe how to do that? If it may help, i also output the barcode complete html (UL, LI, and IMG tags) in a NOSCRIPT tag for those without js, so maybe i can use those for the background loading? On Mon, Oct 27, 2008 at 9:37 PM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: @-b: given

[jQuery] Re: Script like this site: http://ringvemedia.com/

2008-10-30 Thread Alexandre Plennevaux
i think there is first and foremost a clever use of CSS, because if i disable javascript, the effect is still there. Anyway, what's nice is this proportional resizing of the image, according to the viewport dimensions. Then, the relevant code is this: kina = { doc: { x: 0, y: 0 }, fix:

[jQuery] Re: please check website before launch

2008-10-27 Thread Alexandre Plennevaux
a [?] button that pops up a quick set of visual navigation tips. -- Ed Finkler http://funkatron.com AIM: funka7ron ICQ: 3922133 Skype: funka7ron On Oct 26, 5:44 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: I assume all sets tagged People are also tagged as Experimental, that could

[jQuery] Re: please check website before launch

2008-10-27 Thread Alexandre Plennevaux
@-b: given the comments above, i intend to implement this background image loading. thanks for taking time to review the website and the comment! On Mon, Oct 27, 2008 at 9:34 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I tried loading the site several times and it timed out after loading

[jQuery] Re: [OT] please check website before launch

2008-10-26 Thread Alexandre Plennevaux
Alexandre Plennevaux-2 wrote: Hi mates, May i ask you guys to have a look at my latest project,a bit on the experimental side in terms of UI : a barcode image gallery for a spanish photographer: http://www.pixeline.be/test/lisapram/ Let me know of any bugs you find? AFAIK everything

[jQuery] Re: please check website before launch

2008-10-26 Thread Alexandre Plennevaux
h Ricardo thanks a lot for the thorought report. Are the galleries dynamic? If they are not you could just cache/hardcode the bar sizes and then load on demand, or just make the bar sizes relative to the number of pictures, not their dimension. that's actually something that could be

[jQuery] Re: please check website before launch

2008-10-26 Thread Alexandre Plennevaux
I assume all sets tagged People are also tagged as Experimental, that could be the issue. Exactly. i should have paid more attention to that when setting up the test bed. your critics are very useful! i'll debrief with the customer. but you know, she wanted this experimental interface, so i

[jQuery] Re: [OT] please check website before launch

2008-10-25 Thread Alexandre Plennevaux
Hi Christoph, thanks for the feedback anyway. cheers, alexandre On Sat, Oct 25, 2008 at 6:27 PM, Christoph Haas [EMAIL PROTECTED] wrote: On Freitag, 24. Oktober 2008, pixeline wrote: May i ask you guys to have a look at my latest project,a bit on the experimental side in terms of UI : a

[jQuery] Re: li selection problem

2008-10-24 Thread Alexandre Plennevaux
come on marty try reviewing your css skills a little bit especially the css selectors. You 've got it wrong, but this should do : $('ul li.stripeable:even').addClass('greenbar'); On Fri, Oct 24, 2008 at 8:47 PM, MartyB [EMAIL PROTECTED] wrote: With... $('ul ul

[jQuery] Re: li selection problem

2008-10-24 Thread Alexandre Plennevaux
Yup I second Mike's advise. Make sure first that CSS allows it in a static demo file, then when you get it to work, you'll know what to script exactly. Just a remark $('ul ul li') is not the same as $('ul li'). In the first case it would only concern li which are inside an ul, inside another ul

[jQuery] Re: jQModal loading separate urls into div

2008-10-23 Thread Alexandre Plennevaux
With so little data it's hard to really give an advise. do you populate the content inside the div via an ajax call? Then you need to bind their click event (after they have been loaded see livequery plugin), to a function that does ajax calls inside the div you could also use an iframe (

[jQuery] Re: cannot reset width value _ width(val)

2008-10-23 Thread Alexandre Plennevaux
Could anybody take a look at my problem please? I haven't made any progress so far :( On Thu, Oct 23, 2008 at 3:17 PM, pixeline [EMAIL PROTECTED] wrote: Hi all, i'm trying to kill the last bugs of lisapram.com before letting the project go _ the issue i'm facing is that i can't manage or

[jQuery] Re: cannot reset width value _ width(val)

2008-10-23 Thread Alexandre Plennevaux
Anybody, please ? On Thu, Oct 23, 2008 at 8:10 PM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Could anybody take a look at my problem please? I haven't made any progress so far :( On Thu, Oct 23, 2008 at 3:17 PM, pixeline [EMAIL PROTECTED] wrote: Hi all, i'm trying to kill the last

[jQuery] Re: Modal Window Page Refresh

2008-10-22 Thread Alexandre Plennevaux
depending on which modal window you use, of course. Personally, I use jqModal, which has a handy onClose callback. I also had the need to, in some cases, refresh the main page after modal close. So i added an option variable (boolean) telling if it should refresh or not after closing the modal.

[jQuery] Re: jQuery Uploader Flash player 10 fix

2008-10-21 Thread Alexandre Plennevaux
hi Gilles, i was about to take the same path: convert YUI uploader into jquery for the new version of jquploader, because it's simply the best implementation i've seen so far (kuddos to yahoo). i'll be very interested with what you come up with. There is one issue i still lack for a good answer,

[jQuery] Re: ANNOUNCE: Context Menu Plugin v1.0 - new plugin with themes, highly extensible

2008-10-20 Thread Alexandre Plennevaux
Matt, you rule ! On Mon, Oct 20, 2008 at 6:11 PM, Matt Kruse [EMAIL PROTECTED] wrote: I've just released version 1.0 of my Context Menu plugin: http://plugins.jquery.com/project/cmenu ( plugin home: http://www.javascripttoolbox.com/lib/contextmenu/ ) Here is the description from the plugin

[jQuery] Re: JQuery to select rows inside a particular table

2008-10-16 Thread Alexandre Plennevaux
TABLE, then it first looks for TABLES tags, then check for their id. so it is better to use only the ID. On Thu, Oct 16, 2008 at 9:23 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: This worked. Thank you very much for your help. -jl On Oct 15, 4:10 pm, Alexandre Plennevaux [EMAIL PROTECTED

[jQuery] Re: Beginner: Load Bind Event Problem

2008-10-15 Thread Alexandre Plennevaux
Because the events are initialised on page load for the dom state available at that moment (more on this here: http://docs.jquery.com/Tutorials:AJAX_and_Events)http://docs.jquery.com/Tutorials:AJAX_and_Events . either you include your javascript inside the ajaxed html (baad), or (wiser

[jQuery] Re: Lightbox Plugin wanted

2008-10-15 Thread Alexandre Plennevaux
shadowbox? http://mjijackson.com/shadowbox/ On Wed, Oct 15, 2008 at 2:08 PM, Sandra Erb [EMAIL PROTECTED]wrote: I'm looking for a jquery lightbox plugin for a screenshot tour. I want to present an image in a lightbox with a text below the image and a link to the next image. When the user

[jQuery] Re: JQuery to select rows inside a particular table

2008-10-15 Thread Alexandre Plennevaux
$('#myTable tr'); HTH Alex On Thu, Oct 16, 2008 at 12:59 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Here you go. I am looking for a general solution. -jl table id=myTable tr id=myTable_row_0 td/td /tr tr id=myTable_row_1 td/td /tr /table On Oct 15, 3:32 pm, MorningZ [EMAIL

[jQuery] Re: How to avoid throbbing Hover actions?

2008-10-14 Thread Alexandre Plennevaux
did you try using the hoverIntent plugin ? I find that it makes hover events much easier to work with. http://plugins.jquery.com/project/hoverIntent LAb[au] _ *lab*oratory for *a*rchitecture and *u*rbanism Alexandre Plennevaux Lakensestraat 104 Rue de Laeken Brussel 1000 Bruxelles België

[jQuery] listnav - callback after each button click

2008-10-14 Thread Alexandre Plennevaux
listnav click. Is this possible as such ? If not could you consider this as a feature request? Thank you! Alexandre LAb[au] _ *lab*oratory for *a*rchitecture and *u*rbanism Alexandre Plennevaux Lakensestraat 104 Rue de Laeken Brussel 1000 Bruxelles België _ Belgique _ Belgium tel: +32 (0)2

[jQuery] Re: don't understand this bug _ please review code

2008-10-14 Thread Alexandre Plennevaux
to preload all the images? It's a huge hit on the server and slows down the browser considerably. - ricardo On Oct 12, 4:40 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hi Friends, i'm about to finish an old project of a specific image viewer for a professional photographer. The whole

[jQuery] Re: Thickbox vs jqModal

2008-10-13 Thread Alexandre Plennevaux
I personally prefer jqmodal, the result is snappier. Maybe this conversion tutorial will help you out: http://www.pixeline.be/blog/2008/javascript-loading-external-urls-in-jqmodal-jquery-plugin/ cheers, alexandre LAb[au] _ *lab*oratory for *a*rchitecture and *u*rbanism Alexandre Plennevaux

[jQuery] Re: sortable links

2008-10-13 Thread Alexandre Plennevaux
how about preventing event bubbling ? $(.mydraggable).click(function(e){ e.stopPropagation();}); On Mon, Oct 13, 2008 at 5:38 PM, MorningZ [EMAIL PROTECTED] wrote: Well, as mentioned above use the Sortable's event handlers (sort start, end, etc) to wire/unwire on an return false to the

[jQuery] Re: jQuery Package Downloader

2008-10-12 Thread Alexandre Plennevaux
maybe and then, maybe not, depending on the case : the kilobyte footprint of jquery minified is light, compared to the footprint of additional server requests for each additional file to load.at the very least, a production website should have all its javascript compiled into one single minified

[jQuery] don't understand this bug _ please review code

2008-10-12 Thread Alexandre Plennevaux
know exactly in fact how to describe it: a grey box appears underneath, and i don't find where it comes from. Can somebody check? If you want to peak at the code (js and html) are available in the nice jsbin app of remy: http://jsbin.com/eqime thank you very much for your help ! Alexandre

[jQuery] dimensions plugin integrated in jquery ?

2008-10-08 Thread Alexandre Plennevaux
hello! aquick question: is it right that dimensions.js has been included in jquery 1.2.6? So there is no need to include it as a separate plugin? thanks for your insight! Alexandre

[jQuery] Re: dimensions plugin integrated in jquery ?

2008-10-08 Thread Alexandre Plennevaux
thanks brandon! it would maybe be useful to update the plugin project page with that info? right now, it kindda says you need jquery 1.2+ http://plugins.jquery.com/node/1089 thanks in any case! LAb[au] _ *lab*oratory for *a*rchitecture and *u*rbanism Alexandre Plennevaux Lakensestraat 104

[jQuery] OT : javascript editor (with code formatting)

2008-10-07 Thread Alexandre Plennevaux
Friends, aptana studio, albeit a nice editor, is recently crashing all the time and now doesn't even want to restart. I'm looking for a good alternative, that has a code formatting (auto indenting) functionality. Any suggestion ? I'm on Windows XP SP3... Thank you, Alexandre

[jQuery] Re: OT : javascript editor (with code formatting)

2008-10-07 Thread Alexandre Plennevaux
thanks for the tip Mike ! Komodo IDE is a bit too expensive for my purse, but i do use the free version which is good, except it does not allow code formatting AFAIK. LAb[au] _ *lab*oratory for *a*rchitecture and *u*rbanism Alexandre Plennevaux Lakensestraat 104 Rue de Laeken Brussel 1000

[jQuery] Re: OT : javascript editor (with code formatting)

2008-10-07 Thread Alexandre Plennevaux
] wrote: Notepad++ is a (free and) very light editor with good syntax highlighting and indentation guides. Not many extra features though. http://notepad-plus.sourceforge.net/ - ricardo On Oct 7, 4:18 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: thanks for the tip Mike ! Komodo IDE

[jQuery] Re: XML Parsing Question...

2008-10-06 Thread Alexandre Plennevaux
and if you simply try $(EventContact,test).length? LAb[au] _ *lab*oratory for *a*rchitecture and *u*rbanism Alexandre Plennevaux Lakensestraat 104 Rue de Laeken Brussel 1000 Bruxelles België _ Belgique _ Belgium tel: +32 (0)2 2196555 fax: +32 (0)2 4266986 mail: [EMAIL PROTECTED] [EMAIL

[jQuery] Re: ANNOUNCE: jQuery listnav plugin

2008-10-03 Thread Alexandre Plennevaux
arf, well, search engines would link to it directly in any case. So better indeed put a link back to the main project page :) LAb[au] _ *lab*oratory for *a*rchitecture and *u*rbanism Alexandre Plennevaux Lakensestraat 104 Rue de Laeken Brussel 1000 Bruxelles België _ Belgique _ Belgium tel

[jQuery] Re: NEW PLUGIN (beta): ContextMenu

2008-10-03 Thread Alexandre Plennevaux
amazingly done. congratz ! LAb[au] _ *lab*oratory for *a*rchitecture and *u*rbanism Alexandre Plennevaux Lakensestraat 104 Rue de Laeken Brussel 1000 Bruxelles België _ Belgique _ Belgium tel: +32 (0)2 2196555 fax: +32 (0)2 4266986 mail: [EMAIL PROTECTED] [EMAIL PROTECTED] http://www.lab

[jQuery] Re: could someone Please Help...

2008-10-02 Thread Alexandre Plennevaux
obeyed the standards. you will have to google for a fix to make position:fixed work across older browsers... LAb[au] _ *lab*oratory for *a*rchitecture and *u*rbanism Alexandre Plennevaux Lakensestraat 104 Rue de Laeken Brussel 1000 Bruxelles België _ Belgique _ Belgium tel: +32 (0)2 2196555

[jQuery] Re: jquery anchor

2008-09-30 Thread Alexandre Plennevaux
hello, you should check out Ariel's scrollTo plugin: http://demos.flesler.com/jquery/scrollTo/ Alexandre Plennevaux LAb[au] http://www.lab-au.com On Tue, Sep 30, 2008 at 9:05 AM, elvisparsley [EMAIL PROTECTED] wrote: I am wondering how can I do like this, http://davidwalsh.name/dw

[jQuery] Re: jScrollPane Help (URGENT)

2008-09-10 Thread Alexandre Plennevaux
if your chat html markup is using , let say, list elements, you could try : var $last = $(' ul.chatLog li:last'); $('.jscrollpane').scrollTo($last); Alexandre Plennevaux LAb[au] http://www.lab-au.com On Wed, Sep 10, 2008 at 12:19 PM, Kp [EMAIL PROTECTED] wrote: Hello all, I'm in quite

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-10 Thread Alexandre Plennevaux
beautifully executed. well done ! Alexandre Plennevaux LAb[au] http://www.lab-au.com On Wed, Sep 10, 2008 at 3:17 PM, Andy Matthews [EMAIL PROTECTED]wrote: Two words. Kick ass. But really...great job. I love the ability to skin the selection grid. I'd request only one feature

[jQuery] Re: marquee brought back to life with jQuery

2008-09-10 Thread Alexandre Plennevaux
not sure about the usefulness of your plugin, but i sure love your webpage's background image: nice psyche effect when using mousewheel... ! Alexandre Plennevaux LAb[au] http://www.lab-au.com On Wed, Sep 10, 2008 at 3:46 PM, Remy Sharp [EMAIL PROTECTED] wrote: Hi, I've just released

[jQuery] Re: jQuery how to pronounce

2008-09-10 Thread Alexandre Plennevaux
i guess the real question becomes now: how to pronounce jay-queer-ee joke apart: hear it said by its own very creator: http://ejohn.org/blog/hacking-digg-with-firebug-and-jquery/ Alexandre Plennevaux LAb[au] http://www.lab-au.com On Wed, Sep 10, 2008 at 4:07 PM, Michael Stuhr [EMAIL

[jQuery] Re: ZKOSS uses scriptaculous

2008-09-08 Thread Alexandre Plennevaux
this should be useful for you: http://docs.jquery.com/Using_jQuery_with_Other_Libraries Alexandre Plennevaux LAb[au] http://www.lab-au.com On Mon, Sep 8, 2008 at 3:30 PM, Huub [EMAIL PROTECTED] wrote: We cannot include jquery.js in a ZK page, because of $ I deleted the $ = jQuery

[jQuery] Re: get the tutorials offline

2008-09-06 Thread Alexandre Plennevaux
how about printing them on paper ? Alexandre Plennevaux LAb[au] http://www.lab-au.com On Sat, Sep 6, 2008 at 7:30 PM, Mihamina Rakotomandimby [EMAIL PROTECTED] wrote: Hi, I have a very slow internet connection and more or less 10 people who will have to browse the jquery tutorials. I

[jQuery] Re: Proof of concept: Animated data grid/table jquery plugin with sorting and pagination and somewhat lightweight

2008-09-02 Thread Alexandre Plennevaux
unresponsive thanks for sharing ! Alexandre Plennevaux LAb[au] http://www.lab-au.com On Tue, Sep 2, 2008 at 2:09 AM, num [EMAIL PROTECTED] wrote: My proof of concept http://www.overset.com/2008/08/30/animated-sortable-datagrid-jquery-plugin-jtps/ I haven't yet seen html scrolling animation

[jQuery] Re: jQuery uploading. Data type question.

2008-09-01 Thread Alexandre Plennevaux
set it to html then it could simply be echo 'pthis is my value!/p'; does this help ? Alexandre Plennevaux LAb[au] http://www.lab-au.com On Mon, Sep 1, 2008 at 3:22 AM, McBilly Wilford Sy [EMAIL PROTECTED] wrote: Hi Alex. Could you also give me the codes you used

[jQuery] Re: jQuery uploading. Data type question.

2008-08-31 Thread Alexandre Plennevaux
) { // jQuery(div).html(data).evalScripts(); //jQuery(div).html(data); } //alert($('param', data).each(function(){alert($(this).attr('value'));})); return data; } }); Alexandre Plennevaux LAb[au] http://www.lab-au.com On Sun, Aug 31, 2008 at 3:07 AM, McBilly

[jQuery] Re: jQuery uploading. Data type question.

2008-08-30 Thread Alexandre Plennevaux
i would think your issue is on the serverside, or your test file itself. the plugin's datatype setting tells about which type will the return message be (xml/html or json) Alexandre Plennevaux LAb[au] http://www.lab-au.com On Sat, Aug 30, 2008 at 12:10 PM, McBilly Wilford Sy [EMAIL PROTECTED

[jQuery] Re: jqModal and IE problems

2008-08-29 Thread Alexandre Plennevaux
did you try changing the doctype ? Alexandre Plennevaux http://www.lab-au.com On Fri, Aug 29, 2008 at 9:44 PM, MorningZ [EMAIL PROTECTED] wrote: So i have some usage of jqModal in my project and this is what's going on: (screenshot: http://i38.tinypic.com/2edavs2.jpg) you can see

[jQuery] paralax plugin _ wow !

2008-08-25 Thread Alexandre Plennevaux
just spotted this new entry in the plugin rss feed, an impressive effect plugin ! http://webdev.stephband.info/parallax_demos.html Alexandre Plennevaux LAb[au] http://www.lab-au.com

[jQuery] Re: do I need to use var $var = something

2008-08-20 Thread Alexandre Plennevaux
hello, no it does not have any added functionality, it's a way to remember that this variable is caching a jquery object. var $myObj = $('div.myObj); $myObj.css({color: 'red'}); it's a good way to optimize your code memory-wise. Alexandre Plennevaux LAb[au] http://www.lab-au.com On Wed

[jQuery] Re: Parsing XML using jQuery

2008-07-09 Thread Alexandre Plennevaux
the revelation. try alert($(p, xml).eq(0).text()); -- Alexandre Plennevaux LAb[au] http://www.lab-au.com

[jQuery] Re: click() on submit button doesn't trigger form's jquery submit handler

2008-07-09 Thread Alexandre Plennevaux
instead: $('input[type=submit]').bind('submit', function(){alert(submitted !);}); -- Alexandre Plennevaux LAb[au] http://www.lab-au.com

[jQuery] Re: Sumbit Twice a form

2008-07-07 Thread Alexandre Plennevaux
. basically, your serverside script processes the form, saves it in a database, then if all correct, call the external form, via GET (that is, as query variables). -- Alexandre Plennevaux LAb[au] http://www.lab-au.com

[jQuery] Re: click event bug?

2008-07-07 Thread Alexandre Plennevaux
On Mon, Jul 7, 2008 at 11:21 AM, mattithjah [EMAIL PROTECTED] wrote: i load several tables contents via AJAX. after each load, i do bind(click, function(){ ... }). this should bind it to all matching elements of the DOM. but, in all browsers, it does apply only to newly loaded parts, the

[jQuery] Re: fckeditor and jquery validation

2008-07-07 Thread Alexandre Plennevaux
On Mon, Jul 7, 2008 at 7:32 PM, oscarml [EMAIL PROTECTED] wrote: Hi to everybody, I have a problem validating a textarea generated by fckeditor with PHP. I have placed the fckeditor inside a form, and the problem is that if a put a char in the textarea and then press submit the validation

[jQuery] Re: Form Field

2008-07-07 Thread Alexandre Plennevaux
On Mon, Jul 7, 2008 at 8:12 PM, Jim Callender [EMAIL PROTECTED] wrote: Hi List, New to the group, so I will start off with hopefully a bug some of you may have seen before ;) = How do I stop the first 2 input fields going behind what is an option form field?

[jQuery] Re: Plugin better than Lighbox or Thickbox

2008-07-07 Thread Alexandre Plennevaux
looks a lot like this one. http://vikjavev.no/highslide/ Charging for this is pretty lame. They would be better off making tham free and benefiting from the traffic they would generate. On Sun, Jul 6, 2008 at 5:07 PM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: On Sun, Jul 6, 2008

[jQuery] Re: Plugin better than Lighbox or Thickbox

2008-07-06 Thread Alexandre Plennevaux
On Sun, Jul 6, 2008 at 3:39 PM, David Morton [EMAIL PROTECTED] wrote: Why do you think it is better? On Sun, Jul 6, 2008 at 6:59 AM, [EMAIL PROTECTED] wrote: Dear folk, do we have such a plugin like below ... I have test the Demo version it is much more better from our Lightbox Plugin,

[jQuery] Re: jqModal r13 released!

2008-07-06 Thread Alexandre Plennevaux
On Mon, Jul 7, 2008 at 4:52 AM, Benjamin Sterling [EMAIL PROTECTED] wrote: Brice, very nice work! There is not a project that goes by that I don't use your plugin in. On Sun, Jul 6, 2008 at 10:18 PM, Brice Burgess [EMAIL PROTECTED] wrote: I've released the 13th revision of jqModal. Maybe I

[jQuery] Re: Drap 'n' Drop with easing....

2008-07-04 Thread Alexandre Plennevaux
an easing script with a d'n'd script to achieve this? Or is there anything out there already that will do this? Cheers Ryan no, of course it's possible, but i would use flash for such effects _ very CPU/GPU intensive. -- Alexandre Plennevaux LAb[au] http://www.lab-au.com

[jQuery] Re: Check if window exists before opening

2008-07-03 Thread Alexandre Plennevaux
On Thu, Jul 3, 2008 at 8:17 AM, Sam Sherlock [EMAIL PROTECTED] wrote: this is some I am thinking about and an approach that I may take, have'nt got to that stage yet but window.closed looks good http://bytes.com/forum/thread91209.html 2008/7/3 Bruce MacKay [EMAIL PROTECTED]: More

[jQuery] Re: text input glow effect

2008-07-02 Thread Alexandre Plennevaux
to it. Does anyone know of technique that I could apply to allow this effect to happen in IE FF ? Thank Welcome on board ! you don't need javascript for that: simply with CSS : input:focus{ background-image: url(highlightedinput.gif) ; } -- Alexandre Plennevaux LAb[au] http://www.lab-au.com

[jQuery] Re: jqModal - How to access the iframe from the parent

2008-07-02 Thread Alexandre Plennevaux
-- Alexandre Plennevaux LAb[au] http://www.lab-au.com

<    1   2   3   4   5   6   7   >