Re: [jQuery] JDmenu and dimensions version clash.

2007-02-26 Thread Bob den Otter
Jonathan Sharp schreef: You're correct with 1.2.1 not working with the latest dimensions. There were some API changes to the dimensions plugin that broke compatibility. So here's the good news! I have 1.3 in final beta but just haven't packaged it for release yet. Hi Jonathan, At first

Re: [jQuery] Progress Bar Plugin

2007-02-26 Thread David Duymelinck
mrcarxpert schreef: As promised I'm slowly releasing my jQuery based code for public consumption. This is more css than anything else, but it does use jQuery. This is something I just came up with one night and have yet to use it in a project, so it is basically untested. It appears to work

Re: [jQuery] how do i use display: table-row; instrad of display: block; with the show() effect on table rows?

2007-02-26 Thread Klaus Hartl
Mark schrieb: Thanx that did the trick. also importand to add is that a table MUST HAVE tbody and /tbody :) if you don`t have that it will get messy again :P That's because browsers add that element implicitly, even if you left it out. (Same with the body element for example). -- Klaus

Re: [jQuery] Help needed

2007-02-26 Thread Klaus Hartl
Ⓙⓐⓚⓔ schrieb: also you're better off debugging in firefox. safari is cute but firefox+firebug is the king of javascript debugging! Well, if you have to debug in Safari - because the bug only occurs there ;-) - you can download a Webkit nightly. It has a good JavaScript debugger (Drosera) and

Re: [jQuery] How to use cookies?..

2007-02-26 Thread Mikael Noone
Hello again, Thanx for you kind answeres, ive tried to figure out how to get the new position, but i simply do not know how to get the value. This is what ive tried: var POS_COOKIE = getElementById('divname') $.cookie('position', 'POS_COOKIE'); And ive probably misunderstood how it works to...

[jQuery] TABS plugin: ajax tabs, $.triggerTab, and intercepting clicks ??

2007-02-26 Thread Brice Burgess
I've finally got around to using the tabs plugin am loving it! :) In due time, I of course came across a complexity that I'm having a hard time elegantly solving. 4 tabs are setup displaying forms to aid in a mailing composition; composition, template, message, and preview. The content of

[jQuery] Integrate Form plugin with jQuery plugin Validation

2007-02-26 Thread amircx
hey. ive built a form thats sends data Asynchronously... im trying to integrate it with the Validation plugin (http://bassistance.de/jquery-plugins/jquery-plugin-validation/) seems not work anyone can take a look or just paste here a code that he success to do ? i want that the user will not

[jQuery] Nightly builds links broken

2007-02-26 Thread Arrix
Requests to http://jquery.com/src/nightlies/jquery-nightly.js and http://jquery.com/src/nightlies/jquery-nightly.pack.js get a 404 error. Is there anything wrong or the files are being updated? -- Arrix ___ jQuery mailing list discuss@jquery.com

[jQuery] Problem in Opera 9.1

2007-02-26 Thread agent2026
Hi, After updating to Opera 9.1 (at least I think that's what did it), the ul in my carousel div dropped by 40px. Turns out the ul must be set to display:inline, but this setting breaks the carousel in all browsers causing it to no longer 'turn'. Anyone else come across this, or have any

[jQuery] $(el).css(string) return empty

2007-02-26 Thread byan
guys, i'm loosing my mind here, anybody can help me ? why this command: $(el).css(string) return empty value ? how can this happened ? because i'm sure the element has css valid property anybody have the same problem ? -- View this message in context:

[jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Klaus Hartl
Hi jQuerians, I just committed what I would call Thickbox Reloaded alpha version. It may look the same pretty much, but is a complete rewrite. Here's what's new: * Chainable method to bind Thickbox to links and forms (makes it easy for content that gets loaded/created later on). * Totally

Re: [jQuery] how do i use display: table-row; instrad of display: block; with the show() effect on table rows?

2007-02-26 Thread Mark
Thanx, i wasn`t aware of that. 2007/2/26, Klaus Hartl [EMAIL PROTECTED]: Mark schrieb: Thanx that did the trick. also importand to add is that a table MUST HAVE tbody and /tbody :) if you don`t have that it will get messy again :P That's because browsers add that element implicitly, even

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Janet Weber
Sounds good How about building in thumbails so you only have to refer to the main image. Janet -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Klaus Hartl Sent: Monday, February 26, 2007 9:06 AM To: jQuery Discussion. Subject: [jQuery] ANNOUNCE:

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Mike Alsup
You can also have a look here (besides repository): http://stilbuero.de/jquery/thickbox_reloaded/ Fantastic, Klaus! This is very jQuery now with the simple usage of $('a').thickbox(). Great, great stuff! ___ jQuery mailing list discuss@jquery.com

[jQuery] Multiple Ajax calls and multiple loading... boxes

2007-02-26 Thread Dmitrii 'Mamut' Dimandt
Ok. I'm at loss here. $.ajaxStart() is invoked for every ajax call that's made on the page. However, for one ajax call I need to display a loading... in one place, for another ajax call - a loading... in another place and for yet a third ajax call a loading in a third place. How can I do this

[jQuery] jQuery + ColdFusion - auto complete examples?

2007-02-26 Thread Priest, James \(NIH/NIEHS\) [C]
I'm working on an administration tool and I'd like to use jQuery to populate a user field - IE the user would type in a few letters of the last name and have it find the matching names... I know there are lots of ColdFusion folks on the list - I'm looking for some examples :) I've used jQuery

Re: [jQuery] Multiple Ajax calls and multiple loading... boxes

2007-02-26 Thread Jake McGraw
You could always show the loading animation just before the ajax call and hide it within the calls callback function: $(#loading1).show(); $.get('handle.php',input,function(){ // Do stuff $(#loading1).hide(); }); Not as pretty as $.ajaxStart(), but this is the only way I see to handle multiple

Re: [jQuery] Multiple Ajax calls and multiple loading... boxes

2007-02-26 Thread Dmitrii 'Mamut' Dimandt
Mike Alsup wrote: $.ajaxStart() is invoked for every ajax call that's made on the page. However, for one ajax call I need to display a loading... in one place, for another ajax call - a loading... in another place and for yet a third ajax call a loading in a third place. How can I do this

Re: [jQuery] Multiple Ajax calls and multiple loading... boxes

2007-02-26 Thread Mike Alsup
$.ajaxStart() is invoked for every ajax call that's made on the page. However, for one ajax call I need to display a loading... in one place, for another ajax call - a loading... in another place and for yet a third ajax call a loading in a third place. How can I do this in jQuery?

Re: [jQuery] jQuery + ColdFusion - auto complete examples?

2007-02-26 Thread Paul
There is a complete CF-based example here: http://www.pengoworks.com/workshop/jquery/autocomplete.htm He includes the CFM as a txt file at the bottom of the page... I just implemented it and it's pretty simple to do following his lead. -Original Message- From: [EMAIL PROTECTED]

Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-26 Thread Sam Collett
On 24/02/07, Rey Bango [EMAIL PROTECTED] wrote: Bah, we're used to it Mike. If you would've been out of line, you know I would've just jumped in and impaled you, jQuery-style. ;o) Rey... You mean like this: var rey = $(#rey); if (rey.finds(#mike).is(out of line)) rey.impales({who: #mike,

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Sean O
Klaus, Nice job, everything looks great in Firefox 2 IE 7 PC. However, nothing seems to work (for me, anyway) in IE 6 PC. Image content gets appended below the body and mangled. Inline/External/Ajax content appears, but on top of existing copy with no windows, styling, or overlays. Note:

Re: [jQuery] How to add event handler to XMLHttpRequest.onreadystatechange?

2007-02-26 Thread George Adamson
Turns out that xmlhttp.onreadystatechange is *write-only* in IE6, so attempting to read it was causing the code to barf. (Probably ok in other browsers but this particular work is in an IE6-only intranet) Is there any other way to set up a custom handler for the onreadystatechange event? Would

Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-26 Thread Andy Matthews
Take off the _spam from the end of the link. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Jordan Sent: Saturday, February 24, 2007 12:32 PM To: jQuery Discussion. Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature that url is busted. Rick

Re: [jQuery] Integrate Form plugin with jQuery plugin Validation

2007-02-26 Thread Jörn Zaefferer
amircx schrieb: hey. ive built a form thats sends data Asynchronously... im trying to integrate it with the Validation plugin (http://bassistance.de/jquery-plugins/jquery-plugin-validation/) seems not work anyone can take a look or just paste here a code that he success to do ? i want that

Re: [jQuery] Help needed: Images not loading properly in FF

2007-02-26 Thread Benjamin Sterling
Is there a link we can take a look at? On 2/25/07, Kristinn Sigmundsson [EMAIL PROTECTED] wrote: Hi, so this is not a specific jQuery problem that I can point out but let me explain my problem. When refreshing a page in FF 1.5 and FF2, some images won't load properly. Which images is totally

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Klaus Hartl
Sean O schrieb: Klaus, Nice job, everything looks great in Firefox 2 IE 7 PC. However, nothing seems to work (for me, anyway) in IE 6 PC. Image content gets appended below the body and mangled. Inline/External/Ajax content appears, but on top of existing copy with no windows, styling,

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Christopher Jordan
The demo page doesn't seem to work for me. Running IE6. After clicking on one of the Show Thickbox links, the page is so jumbled looking that it can't possibly be what you intended Klaus. Also, clicking on any image on the page causes the image to appear *waaay* down the screen such that I

Re: [jQuery] jQuery + ColdFusion - auto complete examples?

2007-02-26 Thread Priest, James \(NIH/NIEHS\) [C]
Paul Rey, Thanks for the links Looks like a good starting point!! I'm sure I'll have questions :) I'm really enjoying jQuery - used it quite a bit in my current application - everyone I've shown it too has been impressed! I've been impressed with how easy it's been to implement everything!

[jQuery] Selecting elements inside a popup

2007-02-26 Thread Danial Tzadeh
Hey all, ''How can i select elements inside a popup? (JS is inside the popup). when I apply an action it seems it regards the page as whole + popup. What i want to do is to open popup inside popup , so the HREF value of the links are passed to a popup function. Any ideas?

Re: [jQuery] jQuery + ColdFusion - auto complete examples?

2007-02-26 Thread Rey Bango
No sweat bud. Let me know if you need anymore help. :o) Rey Priest, James (NIH/NIEHS) [C] wrote: Paul Rey, Thanks for the links Looks like a good starting point!! I'm sure I'll have questions :) I'm really enjoying jQuery - used it quite a bit in my current application - everyone

[jQuery] Odd include ordering bug w/ Tablesorter and WrapInner

2007-02-26 Thread Jonathan Freeman
Haven't had the time to debug this but if you include the jquery-plugin-wrapinner.js before the jquery.tablesorter.js (see below) then the wrapinner will not work. However, reverse the two and both work successfully. Latest sources, same results in ie6/ff2 html head script src=jquery.js

Re: [jQuery] Help needed: Images not loading properly in FF

2007-02-26 Thread Mika Tuupola
On 26 Feb 2007, at 00:35, Kristinn Sigmundsson wrote: packed with dean edwards jspacker, gzip and finally saved for cache Why are you using both jspacker and gzip? Wouldn't just gzip be sufficient? -- Mika Tuupola http://www.appelsiini.net/~tuupola/

Re: [jQuery] TABS plugin: ajax tabs, $.triggerTab, and intercepting clicks ??

2007-02-26 Thread Sean O
Brice, It makes sense to me. You're trying to construct a sort of wizard-based interface, but want a catch if that people jump ahead or behind the current page using tabs -- you want to validate data before letting them view that new tab. This might also be an issue for me soon as I redo a

[jQuery] Another PNG transparency thingy for IE

2007-02-26 Thread Weaver, Scott
I have seen a number requests and solutions for fixing PNG image transparency in IE on the list. However, I have never seen one that addresses transparency of PNGs when they are used as backgrounds. I prefer using elements plus background images for my icons as opposed to image tags so I can use

Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-26 Thread Marshall Salinger
This was posted a while back. The bottom example has the same functionality. http://www.sevir.org/projects/storage/jpanview/index.html -Marshall -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rick Faircloth Sent: Saturday, February 24, 2007 9:43 AM

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Dmitry Rudakov
Klaus Hartl wrote: Sean, as I said, I haven't done any testing in IE at all so far. I'm truly amazed, that it looks great in IE 7 already. :-) Karl, JFYI inline examples also work in Safari.. ajax example does not. Dmitry -- View this message in context:

Re: [jQuery] TABS plugin: ajax tabs, $.triggerTab, and intercepting clicks ??

2007-02-26 Thread Brice Burgess
Klaus Hartl wrote: $('#mailing').enableTab(1).triggerTab(1); does not work, for instance. Brice, I think something else went wrong there. On a simple test page that works fine for me: http://stilbuero.de/jquery/tabs/test.html Maybe you can show some more code here... Klaus, did

[jQuery] problem with edit in place on HTML coding.

2007-02-26 Thread Mark
Hey, i have a edit in place thing now and i have this text: div class=\admin_link\#INCLUDE#/div when you click on the the text field pops in BUT the content is suddently different.. the content now is: lt;div class=admin_linkgt;#INCLUDE#lt;/divgt; but i want it to be : div

[jQuery] Animated Accodian WAS - RE: jquery rocks

2007-02-26 Thread Alex Cook
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of TE Gossman Subject: [jQuery] jquery rocks hi all jquery newbie here, Another great idea that I think would receive some attention is if somebody could code up something like this: http://www.presidentielles.net/ tyler - Tyler,

Re: [jQuery] Help needed

2007-02-26 Thread Ⓙⓐⓚⓔ
Rock on Klaus! http://webkit.org/blog/?p=61 tells me all about Drosera! On 2/26/07, Klaus Hartl [EMAIL PROTECTED] wrote: Ⓙⓐⓚⓔ schrieb: also you're better off debugging in firefox. safari is cute but firefox+firebug is the king of javascript debugging! Well, if you have to debug in Safari

Re: [jQuery] Animated Accodian WAS - RE: jquery rocks

2007-02-26 Thread Jörn Zaefferer
Alex Cook schrieb: This code should give you a hint on what to do next, at the least. It could prolly be refined a bit as well. Also, I didn't mess with any of the styles, and left that to you to figure out. Hope it helps. I haven't looked in detail at your code, but noticed that you

Re: [jQuery] TABS plugin: ajax tabs, $.triggerTab, and intercepting clicks ??

2007-02-26 Thread Klaus Hartl
Brice Burgess schrieb: Klaus Hartl wrote: $('#mailing').enableTab(1).triggerTab(1); does not work, for instance. Brice, I think something else went wrong there. On a simple test page that works fine for me: http://stilbuero.de/jquery/tabs/test.html Maybe you can show some more code

Re: [jQuery] jQuery + ColdFusion - auto complete examples?

2007-02-26 Thread Rey Bango
James!!! Welcome bud. I see you posting on my blog all of the time. Glad to see you came on over to jQuery. For autocomplete functionality, I've sued this one successfully: http://www.dyve.net/jquery/?autocomplete Also, look at the plugins page (http://docs.jquery.com/Plugins) and you'll find

Re: [jQuery] drag drop : proxy element?

2007-02-26 Thread Circlefusion
Paul Bakaus wrote: we are currently working on a major rewrite on Drag Drop for Interface 2. Hopefully I will have the time to release a alpha version soon enough. Thank you very much, Paul. Rather than use a hack, I'd prefer to use the proper helper technique planned for the newer

Re: [jQuery] Multiple Ajax calls and multiple loading... boxes

2007-02-26 Thread Mike Alsup
This is still like a proctologist performing an eye surgery How so? You have control over everything in the settings object. And you can add any properties to it that you wish. So consider: $.ajax({ url: myUrl, type: 'post', indicatorId: '#indicator3' });

Re: [jQuery] problem with edit in place on HTML coding.

2007-02-26 Thread Mika Tuupola
On 26 Feb 2007, at 21:55, Mark wrote: i have a edit in place thing now and i have this text: div class=\admin_link\#INCLUDE#/div when you click on the the text field pops in BUT the content is suddently different.. the content now is: lt;div class=admin_linkgt;#INCLUDE#lt;/divgt; Which

[jQuery] possible slideUp/slideDown bug?

2007-02-26 Thread cdvrooman
Hello, I am using slideUp and slideDown, with each attached to a radio button via click(). Here is the code: $(document).ready(function() { // Attach hide/show functions: $(#user_type_super_x).click(function() {

Re: [jQuery] possible slideUp/slideDown bug?

2007-02-26 Thread FreakDev
hi, i don't really understand your code, you define two different function for the same click event... you should check SlideToggleDown function from Interface 1.2 http://interface.eyecon.ro/demos/ifx.html#slide-fx http://interface.eyecon.ro/docs/fx ++ FreakDev On 2/26/07, cdvrooman [EMAIL

[jQuery] Tabs Plugin and fxAutoHeight

2007-02-26 Thread David
Hi, I've just been checking out the docs and demo of the tabs plugin as I want to use it in a project I'm working on.I'm keen to have all the tabs to be the same `height as I think it will look cleaner in the app. On checking the demo for the tabs plugin (http://www.stilbuero.de/jquery/tabs/) it

Re: [jQuery] TABS plugin: ajax tabs, $.triggerTab, and intercepting clicks ??

2007-02-26 Thread Brice Burgess
Klaus Hartl wrote: That would be done like: $('#containerullia:eq(2)').click(function() { if (formIsValid()) { $('#container-1').enableTab(2).triggerTab(2); } return false; }); Well, not exactly. The problem is that you're submittig a form, and that is going to

Re: [jQuery] possible slideUp/slideDown bug?

2007-02-26 Thread John Resig
jQuery already has a slide toggle: http://docs.jquery.com/Effects#slideToggle.28_speed.2C_callback_.29 There's no reason to use a plugin for it. @Christopher - Your final code would look something like this: $(document).ready(function() { // Attach toggle function:

Re: [jQuery] possible slideUp/slideDown bug?

2007-02-26 Thread rolfsf
or maybe just use slideToggle (Interface not needed) Rolf FreakDev wrote: hi, i don't really understand your code, you define two different function for the same click event... you should check SlideToggleDown function from Interface 1.2

Re: [jQuery] Multiple Ajax calls and multiple loading... boxes

2007-02-26 Thread Rey Bango
Hi Dmitrii, I actually ran into this same issue recently and basically took the route of unbinding the ajaxstart event after the Ajax call was done. Here's my code: // This is the Ajax indicator $('#throbberSearch') .ajaxStart(function(){

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Torbjorn Tornkvist
Hi, It would be nice if it also supported Internationalization of the Previous/Next strings etc. Perhaps, it already does? I'll have to check the source. Cheers, Tobbe Klaus Hartl wrote: Hi jQuerians, I just committed what I would call Thickbox Reloaded alpha version. It may look the

Re: [jQuery] problem with edit in place on HTML coding.

2007-02-26 Thread Mark
sorry, i forgot to mention that.. i`m using the jEditable plugin. 2007/2/26, Mika Tuupola [EMAIL PROTECTED]: On 26 Feb 2007, at 21:55, Mark wrote: i have a edit in place thing now and i have this text: div class=\admin_link\#INCLUDE#/div when you click on the the text field pops in BUT

Re: [jQuery] how can I improve this?

2007-02-26 Thread Alexandre Plennevaux
Did you consider using an Accordion? http://jquery.bassistance.de/accordion/accordionDemo.htmld It should be possible to adapt it to your needs. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of rolfsf Sent: mardi 27 février 2007 0:30 To:

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Olaf Bosch
Klaus Hartl schrieb: Please note that I haven't tested in other browsers than Firefox yet. I just thought I'd like to request some feedback/code review first! My Feedback: -Hardcoded Titles: title=Close this window going to var defaultValues -Inline Content: you have in CSS display none, give

[jQuery] access an element with 2 classes

2007-02-26 Thread Timothy Bowler
Hi, I am creating tooltips for a form. The text that appears in the tooltip will have two classes: span class=info email-infoText./span span class=info password-infoText./span First how can I access all the elements that contain 'info' in their class? Secondly when the user clicks on

Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-26 Thread Rick Faircloth
Thanks for the info, David. I'll check it out! Rick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Sent: Sunday, February 25, 2007 12:49 AM To: jQuery Discussion. Subject: Re: [jQuery] KICK-BUTT javascript based Zoom feature Hi Rick, The jquery panview plugin does

Re: [jQuery] access an element with 2 classes

2007-02-26 Thread Karl Rudd
First bit is easy: // All spans with class=info var infoSpans = $('span.info'); Second bit depends on how you have structured your HTML. Assuming the following HTML: span class=info email-infoText./span input class=hasInfo type=text ... Script (untested): $(function() {

Re: [jQuery] how can I improve this?

2007-02-26 Thread rolfsf
I considered it, and perhaps I should look again. When I first looked it seemed like it was geared more toward typical accordion menus... Alexandre Plennevaux wrote: Did you consider using an Accordion? http://jquery.bassistance.de/accordion/accordionDemo.htmld It should be possible to

Re: [jQuery] Progress Bar Plugin

2007-02-26 Thread mrcarxpert
I notice it too when it's on my blog, but my standalone tester doesn't appear to do it. Anyone else notice any quirks? Josh agent2026 wrote: Same here in FF 2.0. Looks great though, nice work. Adam DavidIcreate wrote: When i tested the demo in FF1.5 on xp i noticed the

Re: [jQuery] jqueryplugins.com

2007-02-26 Thread Alexandre Plennevaux
Great idea! it would be great that you standardize as much as possible the process of PRESENTING a plugin - what is it, what it does - demo - how-to - download - documentation - support - changelog - dedicated support forum And maybe a private access for plugin publishers to maintain their own

Re: [jQuery] Progress Bar Plugin

2007-02-26 Thread Mark
looks nice :) good job 2007/2/27, mrcarxpert [EMAIL PROTECTED]: I notice it too when it's on my blog, but my standalone tester doesn't appear to do it. Anyone else notice any quirks? Josh agent2026 wrote: Same here in FF 2.0. Looks great though, nice work. Adam DavidIcreate wrote:

Re: [jQuery] jqueryplugins.com

2007-02-26 Thread Rey Bango
Matt, I don't want to diminish your excitement but we're already in the process of building a plugin repository to better manage the jQuery plugins. You may want to ping John Resig to discuss your ideas. Rey... Matt Oakes wrote: Coming soon: The ability to search through almost 100 jQuery

Re: [jQuery] KICK-BUTT javascript based Zoom feature

2007-02-26 Thread Rick Faircloth
Thanks for the link. I've got to figure out how to dynamically load a new thumbnail and large image. Rick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marshall Salinger Sent: Monday, February 26, 2007 2:28 PM To: 'jQuery Discussion.' Subject: Re: [jQuery] KICK-BUTT

Re: [jQuery] Validation plugin 1.0 alpha 2

2007-02-26 Thread amircx
ive downloaded the version you linked and for somereason its not working i copied it AS IS to my server , just changed the directory http://www.amir.cx/ajaxtest/test.html i think you have bug there... in ff its works... ie returns errors Jörn Zaefferer wrote: Stefan Kilp [sk-software]

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Kevin Fricovsky
Looks great in FF! Not there yet in IE6 though. Totally fails actually. But like you said, it's alpha. Good luck! -Kevin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Klaus Hartl Sent: Monday, February 26, 2007 9:06 AM To: jQuery Discussion.

Re: [jQuery] jQuery + ColdFusion - auto complete examples?

2007-02-26 Thread Rey Bango
And in case you wanted some code, here's the way that I used it: Main page that uses autocomplete: script src=/lib/jquery.js type=text/javascript/script script src=/lib/autocomplete.js type=text/javascript/script script type=text/javascript $(document).ready(function() {

Re: [jQuery] PNGs in IE

2007-02-26 Thread Schnuck
hi klaus, - first it seemed to work, now it doesn't. do you or anyone know or understand why the following freezes internet explorer (as also noted by SNF)? your tipp on the url below works fine, but the bit you posted about making this work for background images as well makes IE6 freeze. any

[jQuery] addclass and json

2007-02-26 Thread Richard Thomas
I am trying to pass a value to addClass, If I hardcode 'green' it works if I do var = green addClass(var) It works If I try to use a value from jquery json data like addClass(json.class) addClass and jquery die with no visible error in firebug If I do json.class.toString() it works, Prior to

Re: [jQuery] addclass and json

2007-02-26 Thread Karl Rudd
In JavaScript class is a reserved word. Perhaps that's the problem? If not then it'd be best to post a URL to an example page so we can have a look at it. Karl Rudd On 2/27/07, Richard Thomas [EMAIL PROTECTED] wrote: I am trying to pass a value to addClass, If I hardcode 'green' it works if I

Re: [jQuery] addclass and json

2007-02-26 Thread Karl Rudd
Sidenote: If you do need to use class as an attribute / property name you could access it via: json['class'] Karl Rudd On 2/27/07, Richard Thomas [EMAIL PROTECTED] wrote: I am trying to pass a value to addClass, If I hardcode 'green' it works if I do var = green addClass(var) It works

Re: [jQuery] jqueryplugins.com

2007-02-26 Thread Joan Piedra
I'd love to see this like the Firefox addons repository. On 2/26/07, Rey Bango [EMAIL PROTECTED] wrote: Matt, I don't want to diminish your excitement but we're already in the process of building a plugin repository to better manage the jQuery plugins. You may want to ping John Resig to

Re: [jQuery] Progress Bar Plugin

2007-02-26 Thread Joan Piedra
Could you do a image preload demo? That would be interesting, some _real_ examples we could try and use in real app, and simple galleries, or other stuff. It works nice for me, except for the bug previously mentioned. Great work, keep the plugins coming! On 2/26/07, mrcarxpert [EMAIL

Re: [jQuery] jqueryplugins.com

2007-02-26 Thread Gurpartap Singh
Maybe someone might want to turn to site development message in [web] list :-D On 2/27/07, Joan Piedra [EMAIL PROTECTED] wrote: I'd love to see this like the Firefox addons repository. On 2/26/07, Rey Bango [EMAIL PROTECTED] wrote: Matt, I don't want to diminish your excitement but we're

Re: [jQuery] jqModal r7 release!

2007-02-26 Thread Rick Faircloth
Thanks for the info, Ben. I think your application looks great, but is over my head right now. quite complicated! Good work! Hope it works out well for you. Rick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Benjamin Sterling Sent: Saturday, February 24, 2007 5:13 PM To:

Re: [jQuery] TABS plugin: ajax tabs, $.triggerTab, and intercepting clicks ??

2007-02-26 Thread Klaus Hartl
Brice Burgess schrieb: I've finally got around to using the tabs plugin am loving it! :) In due time, I of course came across a complexity that I'm having a hard time elegantly solving. 4 tabs are setup displaying forms to aid in a mailing composition; composition, template, message,

Re: [jQuery] jqueryplugins.com

2007-02-26 Thread Matt Kruse
Just some thoughts. I would really like information or discussion on the documentation/API side of things, as I am currently looking for the best way to document a jQuery API. This definitely needs to be better documented. There is already a very solid, consistent doc format for jQuery code. From

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Joel Birch
On 27/02/2007, at 1:05 AM, Klaus Hartl wrote: Hi jQuerians, I just committed what I would call Thickbox Reloaded alpha version. It may look the same pretty much, but is a complete rewrite. Here's what's new: I'm dumbstruck. Thanks Klaus and Jorn - you have made my day/week/ month. I find

Re: [jQuery] jqModal r7 release!

2007-02-26 Thread Benjamin Sterling
Rick, don't kid yourself, it is over my head too :D. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Tabs plugin / CSS problem

2007-02-26 Thread Dylan Verheul
On this page I've setup a test for the tabs plugin which I want to use. http://waarneming.nl/h/default/test The layout is wrong in FF2 (tabs are too high and too far to the right) and in IE7 (everything looks messed up). The scripts and the CSS are inserted through php calls in a small

Re: [jQuery] addclass and json

2007-02-26 Thread Erik Beeson
addClass(json.class) addClass and jquery die with no visible error in firebug I've found proper exception handling can help track down no visible error type bugs: try { // code here } catch(e) { alert(There was a problem with that code: + e); } But like Karl said, using class is probably the

[jQuery] Help with animate()

2007-02-26 Thread David
Hi, I'm trying to understand how the animate function works, but I'm not finding the documentation very helpful. As an example I would like to move one div to the right 100 pixels. I thought that the following code might do it but I get no movement whatsoever. $(#myDiv).animate({right: 100},

Re: [jQuery] Help with animate()

2007-02-26 Thread Karl Rudd
Make sure the element you're trying to move (the div in this case) has either position: relative or position: absolute. Karl Rudd On 2/27/07, David [EMAIL PROTECTED] wrote: Hi, I'm trying to understand how the animate function works, but I'm not finding the documentation very helpful. As

Re: [jQuery] Tabs plugin / CSS problem

2007-02-26 Thread Dylan Verheul
OK thanks, I thought the tabs CSS overrode the #main ul with it's .anchors definition -- I'll look into it, might have to tighten up the style sheets to make 'em play nice ... On 2/27/07, David [EMAIL PROTECTED] wrote: hi Dylan, As a quick test in Firefox2.0 I removed the '#main ul' and

[jQuery] Newbie Alert: Problem with Ajax

2007-02-26 Thread qsec
Hi, Please excuse my ignorance. I'm totally new to this. I'm trying to get some data from a PHP-script via AJAX. $(document).ready(function(){ $(a#'. $catid .').click(function(){ $(#ajaxloadimage).ajaxStart(function(){ $(this).show();

[jQuery] Creating stylesheets in jQuery

2007-02-26 Thread Danny Wachsstock
This may be helpful to someone: I made a jQuery extension that lets you change the stylesheet styles, rather than the inline styles (which is what jQuery generally does). So you can do: $.style('p').css('color','green'); creates a stylesheet with a rule that sets the color of P elements,

Re: [jQuery] Tabs plugin / CSS problem

2007-02-26 Thread Wilfred Nas
you may want to start with giving the page a proper doctype. than you want to nullify the default margin and padding that an unordered list has... Further more, as I read your 'problem' you assume that is correct in other browsers? Which one, surely not IE 6. When developing, start with

Re: [jQuery] Tabs plugin / CSS problem

2007-02-26 Thread Klaus Hartl
Wilfred Nas schrieb: you may want to start with giving the page a proper doctype. than you want to nullify the default margin and padding that an unordered list has... Further more, as I read your 'problem' you assume that is correct in other browsers? Which one, surely not IE 6. When