Re: [jQuery] New plugin: ContextMenu

2007-03-09 Thread Joel Birch
On 09/03/2007, at 10:13 AM, Chris Domigan wrote: Hi everyone The first version of my new ContextMenu plugin has been released. You can grab it here: http://www.trendskitchens.co.nz/jquery/contextmenu/ ContextMenu lets you selectively replace the browser's right click menu with one of

Re: [jQuery] enhanced suckerfish-style menu plugin

2007-03-09 Thread Torbjorn Tornkvist
Nice menues and a nice looking site! What especially caught my eye though was the rolling fact box. Very nice! Cheers, Tobbe ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] enhanced suckerfish-style menu plugin

2007-03-09 Thread Brice Burgess
Joel Birch wrote: Example: This plugin is now used on my Blush Tomatoes site although only two of the main menu items have dropdowns. http://www.blushtomatoes.com.au/about/ Joel, The menu and the site look great. Fantastic actually. As my .au connection seems to be crawling, it got me

[jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Abel Tamayo
I'm sorry to post a non jQuery related question in the board, but I spent the whole day of yesterday on this and I need it to work for my jQuery plugin (So, somehow, it IS jQuery related). The thing is I have a list of buttons and I can't make the color selectors (foreground and hilite color)

Re: [jQuery] enhanced suckerfish-style menu plugin

2007-03-09 Thread Joel Birch
On 09/03/2007, at 7:22 PM, Torbjorn Tornkvist wrote: Nice menues and a nice looking site! What especially caught my eye though was the rolling fact box. Very nice! Cheers, Tobbe Thanks for the compliments Tobbe! Whilst the intended purpose of this thread is not so much to show off that

Re: [jQuery] How do I hook up the Editable plug-in to a MySQL DB?

2007-03-09 Thread Mika Tuupola
On 9 Mar 2007, at 02:44, Rick Faircloth wrote: I don’t see how to hook the “Editable” plug-in to *any* datasource right now. You mean you want to save the text you edit to the database? For jEditable first and only mandatory parameter is the URL where edited content is POST:ed to. For

Re: [jQuery] Dynamically change Document title

2007-03-09 Thread Klaus Hartl
Michael Geary schrieb: Is there a way to change the title of a document after an ajax Call. I'm using an ajax history system and I would like to view specific document title in the back button list. I've try this but doesn't seem to work : $(title).html(Dynamic Title); I can see

[jQuery] Interface Imagebox (Imagebox didn't work in Safari)...

2007-03-09 Thread mp
Hi, i 'corrected' / modified interface imagebox.js What i added / corrected : * fixed safari bugs (freezes, etc...) Main changes * added minWidth for the container (if you have very tiny images) * added parameter 'showTextImage' to show or not the text "image n from z" See and test here :

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Kenneth
If you're talking about the dimming of the buttons on the GUI, it could be done like so: $(function(){ $('.gui').hover(function(){ $(this).animate({opacity: .3}, 1); },function(){ $(this).animate({opacity: 1}, 1); });

Re: [jQuery] How do I hook up the Editable plug-in to a MySQL DB?

2007-03-09 Thread Michael E. Carluen
Hey Rick: See if this makes sense to you. I just made a CF page from Mika's Editable example. Hth. Michael - On your Form Page: The jQuery: $(document).ready(function() { $(.theclass).editable(http://www.example.com/save.cfm;, { type :

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Joel Birch
On 09/03/2007, at 8:32 PM, Abel Tamayo wrote: Nah, that's easy. The problem is I can't make the lists of lists look like an array of buttons, and some of them place themselves in places I don't want them to. It´s a matter pf position and display, I know that for sure, but still I can't

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Olaf Bosch
Abel Tamayo schrieb: The thing is I have a list of buttons and I can't make the color selectors (foreground and hilite color) look like the ones make a online-demo, help for help ;) is the fastes way -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Dan Eastwell
Have I missed the rest of this thread? Do you have a) Sample HTML/CSS to look at and b) What you'd like it to look like on each of the states. I'll be happy to look at the problem, being a CSS person. On 3/9/07, Abel Tamayo [EMAIL PROTECTED] wrote: Nah, that's easy. The problem is I can't

[jQuery] Track control that starts ajax request to modify on reply

2007-03-09 Thread Rob Desbois
I have a page with a table. Some rows have a particular control; clicking on it sends an ajax request which modifies the database record relating to that particular row. The row is identified in the control's onclick by passing the unique identifier to the click handler. I want the response to

Re: [jQuery] enhanced suckerfish-style menu plugin

2007-03-09 Thread Brice Burgess
Joel Birch wrote: Here is the code: - (function($){ $.fn.superfish = function(o){ var defaults = { hoverClass : sfHover, delay : 400, animation : {opacity:show},

Re: [jQuery] Custome selectors use : as seperator, which is an official character for id's

2007-03-09 Thread Christof Donat
Hi, $('[EMAIL PROTECTED]my:elem]') I guess, that that does not use getElementById() and thus is a lot slower than $('#my:elem'). I guess, that JSF might also have Problems with CSS, becaue there you use stuff like #my:hover, etc. To make the patch to jQuery as small as possible and let most

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Abel Tamayo
The problem is that I don't have server to uploadt it to, and this forum doesn't let you attach files past a determined weight (wich is too small and I always have my attachments banned). That's why I said I would send a sample to those caring souls that could pay me some attention. Now I'm

Re: [jQuery] jquery tabs and loader div

2007-03-09 Thread amircx
hey thanks for the help.. its doesnt work , but im sure that im the idiot and i did worng can you please look at that url and check whats worng in my code? http://www.oranuse.com/myhome/down.php thanks !:) amircx wrote: hey... i want to load content inside tab, and whille that to show

Re: [jQuery] enhanced suckerfish-style menu plugin

2007-03-09 Thread Joel Birch
On 09/03/2007, at 8:50 PM, Brice Burgess wrote: Perhaps I'm way off in protecting the expando ... and I too would like to hear some feedback ;) ~ Brice I've got to admit that I'm not overly familiar with the techniques you are discussing. From what I can tell you are creating an array to

Re: [jQuery] enhanced suckerfish-style menu plugin

2007-03-09 Thread Joel Birch
On 09/03/2007, at 8:45 PM, Torbjorn Tornkvist wrote: Thanks for the compliments Tobbe! Whilst the intended purpose of this thread is not so much to show off that site (I only included the link because I have not had chance to do a real demo page yet), I'm always happy to hear that someone

Re: [jQuery] jquery tabs and loader div

2007-03-09 Thread amircx
hey thanks for the help.. its doesnt work , but im sure that im the idiot and i did worng can you please look at that url and check whats worng in my code? http://www.oranuse.com/myhome/down.php thanks !:) Klaus Hartl wrote: amircx schrieb: hey... i want to load content inside

Re: [jQuery] Custome selectors use : as seperator, which is an official character for id's

2007-03-09 Thread Klaus Hartl
Christof Donat schrieb: Hi, $('[EMAIL PROTECTED]my:elem]') I guess, that that does not use getElementById() and thus is a lot slower than $('#my:elem'). I guess, that JSF might also have Problems with CSS, becaue there you use stuff like #my:hover, etc. To make the patch to jQuery

Re: [jQuery] enhanced suckerfish-style menu plugin

2007-03-09 Thread Joel Birch
On 09/03/2007, at 8:50 PM, Brice Burgess wrote: Perhaps I'm way off in protecting the expando ... and I too would like to hear some feedback ;) ~ Brice I have studied your code closely now and I think I understand it better. You are saying that it's important that the property I'm

Re: [jQuery] How do I hook up the Editable plug-in to a MySQL DB?

2007-03-09 Thread Rick Faircloth
Thanks for the explanation, Mika... that makes things a lot clearer! Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mika Tuupola Sent: Friday, March 09, 2007 3:55 AM To: jQuery Discussion. Subject: Re: [jQuery] How do I hook up the Editable plug-in

Re: [jQuery] interface accordion

2007-03-09 Thread Dimitris Chrysomallis
i got the same problem. You could use the Accordion plugin from here http://bassistance.de/jquery-plugins where you have to set the property active: none. But then, i think that using that plugin creates conflicts with the Interface namespace. 2007/3/9, Indigo [EMAIL PROTECTED]: Folks, How

Re: [jQuery] Validation help with Date Selector

2007-03-09 Thread Rick Faircloth
Did you ever figure out how to move the location of the error message for your input? Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of blemming Sent: Thursday, March 08, 2007 8:02 PM To: discuss@jquery.com Subject: Re: [jQuery] Validation help with

Re: [jQuery] Options for Validation...

2007-03-09 Thread Rick Faircloth
Hi, Jorn... I don't have much of a clue how to code what you mean with the errorPlacement function: Here's what I tried, which didn't work...everything else runs fine without it... remember, unfortunately you're helping someone who has just begun to work with jQuery and the plug-ins... :o)

Re: [jQuery] CSS Doctor :D

2007-03-09 Thread Schnuck
hi abel, done, zipped and sent back to you. hth, s ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] interface accordion

2007-03-09 Thread Jim Wharton
If you really wanted to get violent with it, you could comment out these lines: /*if (!startClosed) { jQuery(this).find('dd:eq(' + on + ')').slideDown(SLIDE_DOWN_SPEED); }*/ That will take out the entire loop. -Original Message- From: [EMAIL PROTECTED]

Re: [jQuery] Options for Validation...

2007-03-09 Thread Sam Collett
On 08/03/07, Rick Faircloth [EMAIL PROTECTED] wrote: I don't have much of a clue how to code what you mean with the errorPlacement function: Here's what I tried, which didn't work...everything else runs fine without it... remember, unfortunately you're helping someone who has just begun to

[jQuery] Need help placing validation message...

2007-03-09 Thread Rick Faircloth
Good morning, all. I've been trying to use Jorn's validation plug-in and I've gotten everything working except placement of the message. I want to put it on top of the field it's responsible for. Jorn gave these instructions and I've tried to implement them, as you'll see in the code below, but

Re: [jQuery] New plugin: ContextMenu

2007-03-09 Thread Andy Matthews
Good job Chris... Seems very responsive too. One thing I'll throw out there for you to think about. I built a map for a browser based game called Travian a while back. One of the things my map did (over the in-game map) was that you could right click on a player and get a list of options. The

Re: [jQuery] Custome selectors use : as seperator, which is an official character for id's

2007-03-09 Thread Brian Miller
I second this suggestion. Most other meta-languages allow backslash-escaping, I don't see why it would be a bad idea here. - Brian I didn't like the idea of hacking jQuery to make selectors with these special chars work, but as it turned out, that is what should be expected! From the CSS

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Karl Swedberg
Abel, send me the files and I'll post them at http:// test.learningjquery.com so that people here can have a go at them. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 9, 2007, at 5:02 AM, Abel Tamayo wrote: The problem is that I don't have server

Re: [jQuery] interface accordion

2007-03-09 Thread Karl Swedberg
On Mar 9, 2007, at 7:35 AM, Dimitris Chrysomallis wrote: i got the same problem. You could use the Accordion plugin from here where you have to set the property active: none. But then, i think that using that plugin creates conflicts with the Interface namespace. 2007/3/9, Indigo

Re: [jQuery] New plugin: ContextMenu

2007-03-09 Thread Chris Domigan
Hi Andy, Travian sounds interesting! I'll have to check that out... The ability to add/remove/enable/disable menu items based on the target is something I'm working on for the next version, along with some other goodies :) Chris On 10/03/07, Andy Matthews [EMAIL PROTECTED] wrote: Good job

Re: [jQuery] Options for Validation...

2007-03-09 Thread Sam Collett
On 09/03/07, Rick Faircloth [EMAIL PROTECTED] wrote: Hi, Sam, and thanks for the reply... With your code, the validation function seems to be working, but the error message is not displaying... And it's not that I want *every* error message to display before #Principal (that's the id for

Re: [jQuery] need some idea

2007-03-09 Thread Jake McGraw
Jake, That's actually a brilliant idea! Something allow the lines of: item name=phone1 type=numeric_string max=14 min=10 descPhone Number/desc databasetblUserProfile.fldPhone1/database valid type=regex/^((\[0-9]{3}\))?\s*[0-9]{3,7}$//valid /item This is exactly what I've been looking

[jQuery] Easy way to get total line items in carousel?

2007-03-09 Thread agent2026
Is there a built in way to get the total amount of line items in a carousel? Adam -- View this message in context: http://www.nabble.com/Easy-way-to-get-total-line-items-in-carousel--tf3376211.html#a9396115 Sent from the jCarousel mailing list archive at Nabble.com.

Re: [jQuery] New plugin: ContextMenu

2007-03-09 Thread Andy Matthews
Travian was pretty fun. A time sink, but enjoyable...especially since all my co-workers also played it. www.travian.com if you're interested. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Domigan Sent: Friday, March 09, 2007 8:32 AM To: jQuery Discussion.

Re: [jQuery] CSS Doctor :D

2007-03-09 Thread Abel Tamayo
Thanks Schnuck. A lot easier once you get rid of the nested list. Also, special thanks since I know you were at work. Abel. On 3/9/07, Schnuck [EMAIL PROTECTED] wrote: hi abel, done, zipped and sent back to you. hth, s ___ jQuery mailing list

[jQuery] Good datepicker

2007-03-09 Thread Rey Bango
Hey guys, I'm looking for a good JS-based date picker. I wanted to use the one in the plugins folder but it doesn't allow for going backwards on the calendar. I need to be able to select any date. Suggestions? Rey -- BrightLight Development, LLC. 954-775- (o) 954-600-2726 (c) [EMAIL

Re: [jQuery] Plugin: jdMenu 1.3.beta2

2007-03-09 Thread Jonathan Sharp
Hi Chris, Let's dive right in... 1) Glad it's being of use! 2) I'm not sure I can replicate this. The behavior (should be) as follows: user mouses over menu item, a short delay and the menu displays OR user clicks menu item and immediately menu displays. Can you provide an example somewhere?

Re: [jQuery] Good datepicker

2007-03-09 Thread Bruce McKenzie
I don't know how far into the past you can go -- but you can definitely go backwards: $('.dp').datePicker({startDate:'05/01/2006'}); Rey Bango said the following on 3/9/2007 11:53 AM: Hey guys, I'm looking for a good JS-based date picker. I wanted to use the one in the plugins folder but

Re: [jQuery] Good datepicker

2007-03-09 Thread Alexandre Plennevaux
Yes it does i use it in one of my app as a form helper to select a UK formatted date before mysql insert. One of the options is the startdate, which you can set to 1789 if you like If you need help, let me know... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: [jQuery] Good datepicker

2007-03-09 Thread Alexandre Plennevaux
Just to make sure we talk about the same plugin, i used Kelvin luck's date picker plugin http://www.kelvinluck.com/assets/jquery/datePicker/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: vendredi 9 mars 2007 17:53 To: jQuery

[jQuery] animation bug with absolute positioning?

2007-03-09 Thread Joel Birch
Hi all, I am experimenting with my Superfish plugin to see how it works with more than two tiers of menu. It does seem to work. However, I seem to have run into a bug or at least a limitation with the animation part of jQuery. Here is a link to my demo page in the making so you can see

Re: [jQuery] Good datepicker

2007-03-09 Thread Sam Collett
On 09/03/07, Rey Bango [EMAIL PROTECTED] wrote: Hey guys, I'm looking for a good JS-based date picker. I wanted to use the one in the plugins folder but it doesn't allow for going backwards on the calendar. I need to be able to select any date. Suggestions? Rey -- BrightLight Development,

Re: [jQuery] animation bug with absolute positioning?

2007-03-09 Thread Jonathan Sharp
Hi Joel, This may sound crazy but try applying a width property to the menus. I ran into a similar problem in developing my plugin and IE was a goof unless a width was applied and once I did that the animations went smoothly. Cheers, -Jonathan On 3/9/07, Joel Birch [EMAIL PROTECTED] wrote:

Re: [jQuery] need some idea

2007-03-09 Thread Ⓙⓐⓚⓔ
that's pretty much what I would have done... but I'd leave the database name out of the item, and add a little more structure survey head databasetblUserProfile/database validity id=phone type=regex/^((\[0-9]{3}\))?\s*[0-9]{3,7}$//valid whatever is needed to define the

[jQuery] Wich element triggered an event?

2007-03-09 Thread Abel Tamayo
Hi all. I'd like to know if there's a standard, easy way to determine with element triggered an event. I'm pretty sure there is, but can't find it in google. Maybe an atribute in the e parameter received by the function like: $(p).bind( click, function(e){ console.log(e.TRIGGER); // This

Re: [jQuery] Need some guidance...

2007-03-09 Thread Jörn Zaefferer
Rick Faircloth schrieb: All formatting should be done via external stylesheets. The plugin lets you customize the class used to mark them as error labels, but that's it. What is the class used to mark them as 'error labels'? Is that a class that I assign to them for the stylesheets to

Re: [jQuery] Good datepicker

2007-03-09 Thread Rey Bango
Hi Alexandre, Yes we're talking about the same plugin but it doesn't go back in time unless you explicitly set the start date to an earlier date. Thats not what I'm looking for. I want arrows that can go back and forth between months. Currently, the plugin will let you go forward from your

Re: [jQuery] Good datepicker

2007-03-09 Thread Rey Bango
Hi Sam, I know but its not exactly what I'm looking for. I want the start date to be today and allow the user to go back or forward from there. Rey Sam Collett wrote: On 09/03/07, Rey Bango [EMAIL PROTECTED] wrote: Hey guys, I'm looking for a good JS-based date picker. I wanted to use the

Re: [jQuery] animation bug with absolute positioning?

2007-03-09 Thread Joel Birch
On 10/03/2007, at 4:12 AM, Jonathan Sharp wrote: Hi Joel, This may sound crazy but try applying a width property to the menus. I ran into a similar problem in developing my plugin and IE was a goof unless a width was applied and once I did that the animations went smoothly. Cheers,

Re: [jQuery] Good datepicker

2007-03-09 Thread Sam Collett
On 09/03/07, Rey Bango [EMAIL PROTECTED] wrote: Hi Alexandre, Yes we're talking about the same plugin but it doesn't go back in time unless you explicitly set the start date to an earlier date. Thats not what I'm looking for. I want arrows that can go back and forth between months.

Re: [jQuery] Wich element triggered an event?

2007-03-09 Thread Jake McGraw
Are you asking which 'p' element triggered the event? If so, you can access it using 'this' reserved word: $(p).click(function(){ $(this).css({backgroundColor:red}); // this refers to clicked p element }); - jake On 3/9/07, Abel Tamayo [EMAIL PROTECTED] wrote: Hi all. I'd like to know if

Re: [jQuery] One element, multiple actions

2007-03-09 Thread Jörn Zaefferer
Rob Wilkerson schrieb: Ah, that's what I was looking for. I knew about jQuery's chainability, but being more familiar with the Java world, I'm not used to chaining completely unrelated actions. That's really cool. Maybe it helps to see how the jQuery would look like when implemented in

Re: [jQuery] Options for Validation...

2007-03-09 Thread Jörn Zaefferer
Sam Collett schrieb: You could probably use CSS for that, but before you do, errorPlacement needs to change (i.e. don't add the br) errorPlacement: function(error, element) { $(element).before(error); }, And your CSS: label.error { position: relative; margin-top: -1em; } The

Re: [jQuery] Wich element triggered an event?

2007-03-09 Thread Choan C. Gálvez
Hello. On 3/9/07, Abel Tamayo [EMAIL PROTECTED] wrote: Hi all. I'd like to know if there's a standard, easy way to determine with element triggered an event. I'm pretty sure there is, but can't find it in google. Maybe an atribute in the e parameter received by the function like: $(p).bind(

Re: [jQuery] Wich element triggered an event?

2007-03-09 Thread Sam Collett
On 09/03/07, Abel Tamayo [EMAIL PROTECTED] wrote: Hi all. I'd like to know if there's a standard, easy way to determine with element triggered an event. I'm pretty sure there is, but can't find it in google. Maybe an atribute in the e parameter received by the function like: $(p).bind(

[jQuery] javascript object not array?

2007-03-09 Thread transfire
I'm confused. Why does: var d = { Products: [ Books, Electronics ] }; alert(typeof d[Products]); Report object and not array? How am I supposed to tell if I have an array rather than a map object? Thanks, T.

Re: [jQuery] Wich element triggered an event?

2007-03-09 Thread Jörn Zaefferer
Abel Tamayo schrieb: Hi all. I'd like to know if there's a standard, easy way to determine with element triggered an event. I'm pretty sure there is, but can't find it in google. Maybe an atribute in the e parameter received by the function like: $(p).bind( click, function(e){

[jQuery] interface 1.2 pause() function

2007-03-09 Thread Paul
Based on a few examples I've googled up, I understand I should be able to pause between animation effects. I must not understand it properly, though, because I get absolutely no delay-the message drops in and back out instantly. Here's what I'm doing; as always, thanks for your input.

Re: [jQuery] Good datepicker

2007-03-09 Thread Rey Bango
Yep, it sure does. Thanks Kelvin! Much appreciated. BTW, is that mentioned on the plugin's description? If not, lets get that page updated, especially since the plugin repository is in progress. Thanks again bud. Rey... Kelvin Luck wrote: Hi, The startDate is the first date that you can

Re: [jQuery] Need some guidance...

2007-03-09 Thread Rick Faircloth
I’m finding it nearly impossible to get the positioning of the error message relative to the form field. It looks like that's because they are both linked by being lumped together in the class error. I think I could get what I'm after if I could address the error message and invalid elements

Re: [jQuery] Options for Validation...

2007-03-09 Thread Jörn Zaefferer
Sam Collett schrieb: Didn't realise that - I thought they were just DOM elements. The CSS should still be interpreted even if the error label is not originally on the page. Using insert before would mean the text input shifts when the error shows (i.e. moves right), but with CSS you could

Re: [jQuery] Accordion - onHide / onShow actions available ?!?!

2007-03-09 Thread Cees (**snow**)
Ok, after a real battle with the DOM (traveled up and down many times, still tired ;-))) i came up with the next solution : $('.Show_hide').Accordion({ active: false, alwaysOpen: false, showSpeed: slow, hideSpeed: slow

Re: [jQuery] javascript object not array?

2007-03-09 Thread Francesco Sullo
d is an Object d.Products is an Array You could test you objects using the constructor property. If you try: alert (d.constructor) you could see that it shows a result different from alert(d.Products.constructor) --Francesco [EMAIL PROTECTED] ha scritto: I'm confused. Why does: var

Re: [jQuery] Need some guidance...

2007-03-09 Thread Rick Faircloth
It's good to know that the label and input can be styled separately. I didn't understand that... Ok... here's the code I'm using (the part that's relevant, anyway)... errorPlacement: function(error, element) { error.insertBefore(element); }, style type=text/css label.error { color:

Re: [jQuery] Validation help with Date Selector

2007-03-09 Thread Rick Faircloth
Hi, David... Your code below looks promising. So I would need to change dateselect to the name of one of my elements and create an div on my page with an id of errordiv to append to? Did you realize also that the parts that the validation plug-in creates can be addressed as label.error and

Re: [jQuery] Good datepicker

2007-03-09 Thread Sean O
Rey, My all-time favorite datepicker is the Lotus Notes Web Datepicker from NSFTools: http://www.nsftools.com/tips/NotesTips.htm#datepicker (don't be fooled by the name, it's a straightforward JS/DHTML picker) Demo: http://www.nsftools.com/tips/DatePickerTest.htm I love this control, and I've

Re: [jQuery] enhanced suckerfish-style menu plugin

2007-03-09 Thread Brice Burgess
Joel Birch wrote: On another note, would it be better if my over and out functions were attached to the jQuery object, and defined outside of the plugin, eg: $.sfOut = function(){ ... }; instead of: var out = function(){ ... }; Would that be better? If so, why? Would

Re: [jQuery] Validation help with Date Selector

2007-03-09 Thread David Dexter
Yeah, I knew about the css (.error) but my issue was with where it was being placed in relation to the date selector image that was added. My final solution was to append the error message before the input field. That made everything consistent. Good luck with your form. David -Original

Re: [jQuery] New plugin: ContextMenu

2007-03-09 Thread Danial Tzadeh
Hi All, Is it possible to make it with left click too? could be a nice addition as many users don't know they have to right click. Cheers, Danial On 3/9/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Chris Domigan schrieb: Hi everyone The first version of my new ContextMenu plugin has been

[jQuery] simple - focusing on an input

2007-03-09 Thread Paul
I'm trying to focus the cursor in a text box at the end of a simple animation, and it won't. The cursor shows up temporarily in the box, then flits away. $(#orderFinder).SlideToggleUp(250, null, 'bounceout');// show/hide the div $(#orderFinder input).val('').focus();

Re: [jQuery] simple - focusing on an input

2007-03-09 Thread Francesco Sullo
Use: $(#orderFinder input).val('')[0].focus() --Francesco Paul ha scritto: I'm trying to focus the cursor in a text box at the end of a simple animation, and it won't. The cursor shows up temporarily in the box, then flits away... $(#orderFinder).SlideToggleUp(250, null,

Re: [jQuery] Validation help with Date Selector

2007-03-09 Thread Rick Faircloth
So with your method, you ended up with the error message appearing *above* the formfield? Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Dexter Sent: Friday, March 09, 2007 2:03 PM To: 'jQuery Discussion.' Subject: Re: [jQuery] Validation

Re: [jQuery] Good datepicker

2007-03-09 Thread Rey Bango
Thanks Sean! I found that one via Google earlier and it looks really nice. I'm currently using the one from DHTMLGoodies and its pretty feature rich although quite big at 47k. Rey... Sean O wrote: Rey, My all-time favorite datepicker is the Lotus Notes Web Datepicker from NSFTools:

[jQuery] moving blocks

2007-03-09 Thread MARIO MOURA
Hi I am newbie in Jquery How can I move a block like this? div class=form-item label for=edit-taxonomy-6farm: /label select name=taxonomy[6] class=form-select id=edit-taxonomy-6 option value=0lt;nonegt;/optionoption value=31faz-en1/optionoption value=32faz-en2/optionoption

Re: [jQuery] interface imagebox

2007-03-09 Thread Daniel MacDonald
http://www.projectatomic.com/litebox/ jQuery LiteBox Beta 2 is released and it includes an auto-advance feature. D bmsterling wrote: Brent, You can check out this plugin http://www.projectatomic.com/litebox/ and you can put a setInterval to trigger the next click. setInterval

Re: [jQuery] jQuery Litebox now GPL/MIT licensed

2007-03-09 Thread Daniel MacDonald
I'm going for triple badass, now. Beta 2 is released (GPL/MIT). Bug fixes: improved loading image performance, new feature: auto-advance slide show. D http:www.projectatomic.com Rey Bango-2 wrote: Damn, now you're plugin is double badass! ;o) Rey Daniel MacDonald wrote: Oops, sorry!

Re: [jQuery] Validation help with Date Selector

2007-03-09 Thread David Dexter
Yes - that way it didn't interfere with the date selector icon at all. - David -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rick Faircloth Sent: Friday, March 09, 2007 11:20 AM To: 'jQuery Discussion.' Subject: Re: [jQuery] Validation help with Date

[jQuery] Swap image onClick

2007-03-09 Thread Katya Ushakova
Hello, all I am a newbie, and just found jquery.com while looking for a suitable collapsible menu script. Everything worked great, until I found that I need to customize it, and I have no idea how to do it. I have used it on this site (it's in progress, hence all the white space).

Re: [jQuery] Plugin: jdMenu 1.3.beta2

2007-03-09 Thread Christopher Jordan
Thanks for the response Jonathan! See my responses below Jonathan Sharp wrote: Hi Chris, Let's dive right in... 1) Glad it's being of use! 2) I'm not sure I can replicate this. The behavior (should be) as follows: user mouses over menu item, a short delay and the menu displays OR user

Re: [jQuery] jQuery Litebox now GPL/MIT licensed

2007-03-09 Thread Rey Bango
w00t! Triple badass given! ;o) Daniel MacDonald wrote: I'm going for triple badass, now. Beta 2 is released (GPL/MIT). Bug fixes: improved loading image performance, new feature: auto-advance slide show. D http:www.projectatomic.com Rey Bango-2 wrote: Damn, now you're plugin is

Re: [jQuery] Swap image onClick

2007-03-09 Thread Sean O
Katya, I think the Xpander plugin: http://labs.activespotlight.net/jQuery/Xpander.html is right up your alley. SEAN O http://www.sean-o.com Katya Ushakova wrote: Hello, all I am a newbie, and just found jquery.com while looking for a suitable collapsible menu script.

Re: [jQuery] simple - focusing on an input

2007-03-09 Thread Paul
Thanks for the reply, Francesco. Your suggestion didn't seem to work-but what is the purpose of the [0] there? _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Francesco Sullo Sent: Friday, March 09, 2007 12:25 PM To: jQuery Discussion. Subject: Re: [jQuery] simple

[jQuery] Loading with animation effect

2007-03-09 Thread JQuery - SimDigital
I'm trying to contract a div, load a content and then expand the div to the content proper height. I was trying as follow: $(#divContent).click(function(){ $(#content).load('info.php'); $(#content).animate({height:'toggle'}, slow); }); That way contract the div, load

Re: [jQuery] Deleting an Element

2007-03-09 Thread Matt Stith
I seem to remember an Unwrap function on this list before, but i have no idea where. Try searching around nabble.com's jquery archives for it. On 3/8/07, Rob Wilkerson [EMAIL PROTECTED] wrote: Is there any way to delete an element while retaining it's child elements? The remove() method

Re: [jQuery] simple - focusing on an input

2007-03-09 Thread Andy Matthews
It references the first matching element. It's array notation. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Sent: Friday, March 09, 2007 2:24 PM To: 'jQuery Discussion.' Subject: Re: [jQuery] simple - focusing on an input Thanks for the reply, Francesco. Your

Re: [jQuery] Loading with animation effect

2007-03-09 Thread Jonathan Chaffer
On Mar 9, 2007, at 15:27 , JQuery - SimDigital wrote: I'm trying to contract a div, load a content and then expand the div to the content proper height. I was trying as follow: $(#divContent).click(function(){ $(#content).load('info.php');

[jQuery] New Plugin: jqChart - Charts plugin for jQuery

2007-03-09 Thread ashutosh bijoor
Hi http://www.reach1to1.com/sandbox/jquery/jqchart/ Been working on this for a while now, and finally have a first cut version up and running. Only tested in Firefox 2.0 Would appreciate feedback. Regards Ashutosh Bijoor -- Reach1to1 Technologies http://www.reach1to1.com http://on2.biz [EMAIL

Re: [jQuery] simple - focusing on an input

2007-03-09 Thread Paul
Ok, so assuming the div contains only one input there is no reason to include it. Anyway I still can't get focus to remain on that input field-any other suggestions? _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Friday, March 09, 2007 1:29

Re: [jQuery] Jquery, Thickbox, and tracking scripts

2007-03-09 Thread Dan Shields
Anyone have any Ideas. There has to be people out there that are pulling in files with Ajax that have third party tracking scripts or something like Google Analytics and what not. I seen some articles about placing this somewhere but I'm not to sure.

Re: [jQuery] Loading with animation effect

2007-03-09 Thread JQuery - SimDigital
Follow the link and take a look what is happening: http://www.souempreteco.com.br/video.avi $('#divContent').click(function(){ $('#content').slideUp('slow').load('info.php', function() { $(this).slideDown('slow'); }); }); Jonathan Chaffer escreveu: On Mar 9, 2007, at 15:27 ,

Re: [jQuery] New Plugin: jqChart - Charts plugin for jQuery

2007-03-09 Thread Christopher Jordan
Ashutosh that is sweet! very nice. I like the demo. Chris ashutosh bijoor wrote: Hi http://www.reach1to1.com/sandbox/jquery/jqchart/ Been working on this for a while now, and finally have a first cut version up and running. Only tested in Firefox 2.0 Would appreciate feedback. Regards

Re: [jQuery] Problem with interface Droppables

2007-03-09 Thread bander
I've found a decent solution. I imagine the developers can clean it up, but until then, this alleviates the problem: iutils:js: getPositionLite : function(el) { var x = 0, y = 0; var fixed; while(el) { if

Re: [jQuery] enhanced suckerfish-style menu plugin

2007-03-09 Thread Joel Birch
On 10/03/2007, at 5:56 AM, Brice Burgess wrote: Joel, I wrote those reviews/changes @ 4am, and after more thought realize most of them were unnecessary. The original code would work @ multiple menus at once without the return this.each(...); The reasons I began with that is I wanted to do

Re: [jQuery] simple - focusing on an input

2007-03-09 Thread Paul
By the way I solved this by putting the .focus() function in the callback for SlideToggleUp(). _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Friday, March 09, 2007 1:29 PM To: 'jQuery Discussion.' Subject: Re: [jQuery] simple - focusing on an

  1   2   >