[jQuery] Re: Inserting text into TextArea at location

2007-06-24 Thread Alex Brem
Hi variaas, just use my plugin or just the code as inspiration: http://laboratorium.0xab.cd/jquery/fieldselection/0.2.3-test/ I'm a bit busy so please check out test.html for an example. :) Alex variaas wrote: > How do I insert a string at a specific place in a textarea? I want to > insert th

[jQuery] ANNOUNCE: Linux.com is using jQuery

2007-06-24 Thread howa
jQuery rules

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-24 Thread Jean
very nice! On 6/24/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: Hi there, I have been using jquery for a couple of weeks now. I should say this is the best library out there. I come from raw javascript, prototype, mootools background and i am damn sure, i am not going back. That said, a c

[jQuery] Re: OT: Excellent Resource for Web Developers

2007-06-24 Thread Jean
man this save my life i have one project to do and i will make the flash content but i´m not so good in this and the http://www.webappers.com/2007/06/23/flash-and-javascript-interactive-diy-map/ resolve a lot of things LOL On 6/24/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: thanksgrea

[jQuery] Re: Overlay plugin?

2007-06-24 Thread Jean
i forgot the ; On 6/25/07, Jean <[EMAIL PROTECTED]> wrote: i make my plugin for that jQuery.fn.bgBody = function() { this = $(this); bgBody = $("#bgBody"); //< -- i have forgot the ; this.after(""); bgBody.css ( "width", this.width()+'px' ); bgBody.css( "height", this.heigh

[jQuery] Re: Overlay plugin?

2007-06-24 Thread Jean
i make my plugin for that jQuery.fn.bgBody = function() { this = $(this); bgBody = $("#bgBody") this.after(""); bgBody.css( "width", this.width()+'px' ); bgBody.css( "height", this.height()+'px' ); bgBody.show(); }; jQuery.fn.fecha_bgBody = function() { $("#bgBody").remove(

[jQuery] Re: Moving Images as objects

2007-06-24 Thread Jean
i thin u can get the position of image1 and use transferTo (interface plugin) for move the image2 to the top of image1 On 6/23/07, Paolo <[EMAIL PROTECTED]> wrote: Hello, I have 2 images and 1 button. When I click on the button, I'd like to move image 2 on top of image 2. I know there are som

[jQuery] Re: Ajax validation preview

2007-06-24 Thread Jean
Very Excellent, I dont use your plugin yet but my next projects will use certainly \o/ On 6/23/07, Felix Geisendörfer <[EMAIL PROTECTED]> wrote: Excellent work Jörn. Thanks a lot. -- Felix -- My latest blog posts: [image: ThinkingPHP and beyond]

[jQuery] Re: Easebox

2007-06-24 Thread Glen Lipka
I sort of made progress, then I tried to hook up the next back buttons. Then I messed something up...then things started to unravel. Now, I am totally confused. I am sure I am writing stuff that is totally illogical. jQuery Programming questions: What is the best pattern to find the next thumbn

[jQuery] Re: ANNOUCE: slideView plugin released

2007-06-24 Thread Rick Faircloth
Looks great, GC! One question (or suggestion)... Could the numbers representing the photos be changed to tiny thumbnails so there would be visual reference? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of GianCarlo Mingati Sent: Saturday,

[jQuery] Re: easing plugin break jQuery, easing plugin needs a small fix

2007-06-24 Thread John Resig
Yes, it would be preferred - I posted that as the solution to the ticket discussing the issue, but two issues: 1) This is a minor release (minor releases shouldn't have any regressions - and breaking a plugin would be one). 2) None of the easing plugins have been updated yet - making it kind of d

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-24 Thread Glen Lipka
I like it alot. The only thing that worries me is the rendering before it does it's jQuery thing. It's all spread out. It would be better if it hid the control until all the backend stuff was taken care of. I also think the various examples are awesome. Really nice. Make sure to register it i

[jQuery] autoHeight Plugin

2007-06-24 Thread Santiago
Anyone knows how to do for this to work on Opera? I have tested on IE, Firefox and works perfect, in Opera don't do the trick. The Plugin Site: http://lib.mobius.tw/jquery/myplugin/iframe_autoHeight/api.htm Cheers!

[jQuery] Re: Navigating between multiple images on one page

2007-06-24 Thread Brad Perkins
Johan, A new plugin was announced recently that might meet your requirements. Look at this thread: http://groups.google.com/group/jquery-en/browse_thread/thread/8248fe024532cbb9 On Jun 24, 2:22 pm, johan_vm <[EMAIL PROTECTED]> wrote: > Hello, > > Can someone (an experienced jQuery user) help me

[jQuery] jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-24 Thread Ganeshji Marwaha
Hi there, I have been using jquery for a couple of weeks now. I should say this is the best library out there. I come from raw javascript, prototype, mootools background and i am damn sure, i am not going back. That said, a couple of days ago, i was looking for a carousel style widget for my app

[jQuery] Re: easing plugin break jQuery, easing plugin needs a small fix

2007-06-24 Thread Michael Schuerig
On Sunday 24 June 2007, John Resig wrote: > Just to clarify: This was an issue in jQuery 1.1.3a - we've fixed the > code in jQuery to fall back to 'linear' if it exists (thus causing > the code to work, no problem). This fix is in SVN right now and will > be in the final 1.1.3 release. I'm wonder

[jQuery] Navigating between multiple images on one page

2007-06-24 Thread johan_vm
Hello, Can someone (an experienced jQuery user) help me out with this problem: I want to place 3 images on one page: http://www.myurl.com/images/1.jpg /> http://www.myurl.com/images/2.jpg /> http://www.myurl.com/images/3.jpg /> And then position them on top of each other by using css positioni

[jQuery] Re: Easebox

2007-06-24 Thread weepy
oh i see - you're loading them over the thumbnails ( i was right clicking and seeing the large file ). one of the main points of thumbnails is that you are not loading the whole image (bandwidth) - so really u should only load them when you click on them. (or it could be an option) weepy On J

[jQuery] Re: Loosing access to 'this' objects in callback method!

2007-06-24 Thread Ⓙⓐⓚⓔ
Nate, beautiful! the tricky: obj2.run.call(instance); // now obj2.run is called, it's own 'this' points to obj instead of obj2 shows that this is not always what is seems to be! call and apply are both ways to override this. Because they are tricky... I like to isolate call and apply to the bo

[jQuery] Re: Loosing access to 'this' objects in callback method!

2007-06-24 Thread Nate Cavanaugh
Hi Glenn, Closures are a pretty tough concept to fully explain. In this case, I should have just said to use an "anonymous function", as it would probably lead to less confusion. Here is a great online resource about closures that really helped me a lot: http://www.hunlock.com/blogs/Closing_The_B

[jQuery] Re: jqUploader

2007-06-24 Thread Alexandre Plennevaux
Look on the jquploader site, the php code is described. But although i provide a sample php file taking care of the upload, you do what you want on the serverside, it does not have to be php. And i don't know what apc is . -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAI

[jQuery] Re: easing plugin break jQuery, easing plugin needs a small fix

2007-06-24 Thread Gilles (Webunity)
Great, just one of the risks using bleeding edge code ;)

[jQuery] Re: easing plugin break jQuery, easing plugin needs a small fix

2007-06-24 Thread John Resig
Just to clarify: This was an issue in jQuery 1.1.3a - we've fixed the code in jQuery to fall back to 'linear' if it exists (thus causing the code to work, no problem). This fix is in SVN right now and will be in the final 1.1.3 release. --John On 6/24/07, Gilles (Webunity) <[EMAIL PROTECTED]> w

[jQuery] Re: Is it possible to attach codes to body.onload via document.ready?

2007-06-24 Thread howa
yes i know but the problem is: sometimes, you don't have the control over the body tag, for example, you are writing a plugin require to trigger some things during window onload, you can't force your users not to use body onload="xxx" right? On 6月24日, 上午2時16分, "Erik Beeson" <[EMAIL PRO

[jQuery] Re: ANNOUCE: slideView plugin released

2007-06-24 Thread Guapo
i have the same problem in ff2.0.0.4 and ie7. On Jun 21, 8:35 pm, "Fred Janon" <[EMAIL PROTECTED]> wrote: > Very nice! > > A couple of things: > > If I click again on the index for currently displayed image, the image > moves a bit (in FF1.5), maybe you could check if the image is already > the o

[jQuery] Re: easing plugin break jQuery, easing plugin needs a small fix

2007-06-24 Thread Glen Lipka
Ack! It looks like george.gsgd is the owner of it. Glen On 6/24/07, Gilles (Webunity) <[EMAIL PROTECTED] > wrote: The easing plugin breaks jQuery's fadeIn etc, since they default to "easing.swing" which is not in the easing plugin, but IS in the jQuery core. So if you also load in jQuery.easi

[jQuery] Re: Easebox

2007-06-24 Thread Glen Lipka
I thought that this would do the same thing... $("[EMAIL PROTECTED]").each(function(i){ thumbnail = $(this).children("img"); thumbnail.addClass("smallThumb"); link = $(this); link.height(thumbnail.height()). width(thumbnail.width()). css("position","relative");

[jQuery] Re: Thickbox, JQuery and editInPlace

2007-06-24 Thread [EMAIL PROTECTED]
Qucik update - installed the Safari 3.0 beta yesterday and now see the same behavior as in IE7. Everything worked fine in Safari 2.

[jQuery] Re: jqUploader

2007-06-24 Thread mikeyao
Alexandre Plennevaux: Do you implement uploading progress with php apc + jqUploader? Can you give php code? thanks. On 6月24日, 下午4时28分, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > hi L :) > > i believe jquploader makes it quite easy as many settings are derived from > the html form. you ca

[jQuery] Re: Loosing access to 'this' objects in callback method!

2007-06-24 Thread Glenn Knowles
Hi Nate, First of all, thank you very much for taking the time to respond. It's greatly appreciated. I had to modify your solution slightly, in that the ajax.complete callback passes two parameters which I need, so I changed the code to... var instance = this; $.ajax( { type: "

[jQuery] easing plugin break jQuery, easing plugin needs a small fix

2007-06-24 Thread Gilles (Webunity)
The easing plugin breaks jQuery's fadeIn etc, since they default to "easing.swing" which is not in the easing plugin, but IS in the jQuery core. So if you also load in jQuery.easing, you'll get a bug ;) For now, i've duplicated the linear part in jQuery.easing.js, and renamed that to "swing". jQu

[jQuery] Re: Image resizing

2007-06-24 Thread Felix Geisendörfer
Untested, off the cuff: centerPosition: function(objWidth, objHeight, boxWidth, boxHeight) {     return {        top: (boxWidth / 2) - (objWidth / 2)        , left: (boxHeight / 2) - (objHeight / 2)     } } var $myDiv = $('#my-div'); var $screen = $(document); mvDiv.css(centerPosition(myDiv.w

[jQuery] Re: onload after page is loaded via ajax created elements - is there a better way ?

2007-06-24 Thread Ganeshji Marwaha
First, as far as i can see, the variable "alldone" will always be false when loadMe() is called, coz, i guess the variable is scoped within that function. Otherwise, what you are doing is correct. You are binding the click event to the "span" tag that just got returned from the server, which is t

[jQuery] Re: ANNOUCE: slideView plugin released

2007-06-24 Thread GianCarlo Mingati
yep, i'll work on that. salvatore, ci penso io ! GC On Jun 24, 11:10 am, "Salvatore FUSTO" <[EMAIL PROTECTED]> wrote: > salve, > secondo me bisognerebbe fare in modo di associare la foto visualizzata al > relativo pulsante (disattivandolo o altro): se le foto si scorrono > sequenzialmente, uno si

[jQuery] Re: OT: Excellent Resource for Web Developers

2007-06-24 Thread [EMAIL PROTECTED]
thanksgreat link!! On Jun 24, 7:59 am, Rey Bango <[EMAIL PROTECTED]> wrote: > I generally try to avoid these types of post but I discovered a site > called WebAppers which is really awesome. Its chock full of RIA, Ajax, > JS and development posts which I'm finding very cool. > > http://www.we

[jQuery] Re: ANNOUCE: slideView plugin released

2007-06-24 Thread Salvatore FUSTO
salve, secondo me bisognerebbe fare in modo di associare la foto visualizzata al relativo pulsante (disattivandolo o altro): se le foto si scorrono sequenzialmente, uno si ricorda, in caso siano parecchie, dove è arrivato. comunque complimenti: un gran bel utilissimo plugin salvatore - Ori

[jQuery] Re: Easebox

2007-06-24 Thread weepy
I guess I mean a bit like this plugin : http://vikjavev.no/highslide/#examples - does an ajax load for the image before it zooms. On Jun 24, 8:47 am, weepy <[EMAIL PROTECTED]> wrote: > looking great > > you need to make it work with thumbnails though otherwise the page > might take aaages to l

[jQuery] Re: Easebox

2007-06-24 Thread weepy
looking great you need to make it work with thumbnails though otherwise the page might take aaages to load with lots of big images weepy :...( On Jun 24, 8:05 am, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > It's inching its way forward. > It seems though that the further I take this, the more p

[jQuery] Re: jqUploader

2007-06-24 Thread Alexandre Plennevaux
hi L :) i believe jquploader makes it quite easy as many settings are derived from the html form. you can check it out and see if it meets your needs here: HYPERLINK "http://www.pixeline.be/experiments/jqUploader/test.php"http://www.pixeline. be/experiments/jqUploader/test.php _ From:

[jQuery] Re: Easebox

2007-06-24 Thread Glen Lipka
It's inching its way forward. It seems though that the further I take this, the more programming is required. All these details. My dream is to have the same syntax as prototype's lightbox and be able to say $(element).EaseBox({ transitionDuration: 1000, easingMethod: method, zoomComple