Re: [jQuery] jQuery Validation 1.0 Alpha

2007-02-09 Thread Brian Litzinger
Kevin, the 3-4 scripts are heavily commented, and it would be very easy to combine them all into one js file and compress it ;) Kevin Fricovsky wrote: You're library though seems to be very robust, I'm just concerned with the 3 (or is it 4) js scripts required for it to work. I too

[jQuery] Plug-in: Check Availability

2007-02-02 Thread Brian Litzinger
I made this little plug-in for an application I'm working on. It's really simple, but maybe others will find it useful and perhaps save some time.. All it does is attach a link to the desired input field and queries a database (or xml file, or whatever you want to query) for an existence of the

[jQuery] tabs plugin - how to start with all content blocks hidden?

2007-01-05 Thread Brian Litzinger
I'm trying to use the tabs plugin, but I want all the content areas hidden until one of the tabs is clicked. I tried it with CSS, but the content areas remain hidden even when the tab is clicked. Is there support for this? -- View this message in context:

Re: [jQuery] slideUp/Down flicker with 1.0.4

2007-01-04 Thread Brian Litzinger
I noticed it Firefox, but surprisingly it doesn't happen for me in Safari. I'm injecting html into a div then sliding it down, and I assumed I might not have written the code correctly, but I also noticed it on normal elements as well. Brian Mika Tuupola wrote: Upon upgrading to jQuery

[jQuery] Interface: Sortables ghosted item doesn't take the css correctly

2007-01-04 Thread Brian Litzinger
I have a sortable list which contains quite a bit of html which includes a child ul, and I noticed when I drag the element not all the css styles are retained in the ghosted item. For example the child ul has the list-type: none, but when its drug the bullets appear. A couple elements with

[jQuery] Interface: Resizeable question

2006-12-12 Thread Brian Litzinger
Does anyone know how to alter the iresizeable.js file to allow multiple resizeable elements on the page? Right now it seems very dependant on IDs, but I need it to be class based. For example I need the handles in each one of these divs to resize the parent div. Right now it just resizes the

Re: [jQuery] Jquery+TinyMCE problem

2006-12-04 Thread Brian Litzinger
You could try wrapping the div with the TinyMCE editor with another div, and applying the event to the wrapper div instead? MiB wrote: http://www.c2design.hu/liliomdomb/test.html look at first. I would like to attach any event to Tinymce but i cant. There is a div in inframe(

[jQuery] MyDayLite (to-do list) release. All files included.

2006-11-29 Thread Brian Litzinger
I originally showed this 3-4 months ago in its very early stages. I've been working on it periodically and using it everyday since then and I think its finally to a stage where I can release it. I'm not a rockstar PHP or JS programmer... I'm sure there are areas that can be optimized so be nice

Re: [jQuery] MyDayLite (to-do list) release. All files included.

2006-11-29 Thread Brian Litzinger
I just re-uploaded the zip file and made sure it contained the same files as the demo. Thanks for the feedback everyone. I'll keep posting updates to the same page, and will eventually take care of the character encoding and string cleaning (as well as a hosted version with username/password

Re: [jQuery] MyDayLite (to-do list) release. All files included.

2006-11-29 Thread Brian Litzinger
David, the priority uses the ! character, and the labels use the character. I originally had it as :, but I found that I actually used : in some of my to-do text for time of day and it borked the input. You can also change them to whatever you want (look in the global.js and label.class.php

[jQuery] How to bind a function only once

2006-10-18 Thread Brian Litzinger
I have a group of checkboxes, and as long as any one of the boxes is checked I need a function bound to a select list, but anytime none of the boxes are checked I need the function unbound. What I have below binds and unbinds, but if I select lets say 4 checkboxes the function is bound and called

[jQuery] Not sure how to do this...

2006-10-11 Thread Brian Litzinger
but how do I take the value of an text field, and check it against the text in a select list? For example, if I type foo in a text field, and I have a select list that looks like the one below it'll automatically make the second option selected. select option value=1bar/option option

[jQuery] input and textarea field resizing

2006-10-03 Thread Brian Litzinger
I ran across a plugin that would automatically expand an input or text area field while typing... but I can't seem to find it now. Anyone know what I'm talking about or where its at? Thanks. -- View this message in context:

Re: [jQuery] input and textarea field resizing

2006-10-03 Thread Brian Litzinger
Ugh, and I just went to the Interface site and didn't see it. Thanks. -- View this message in context: http://www.nabble.com/input-and-textarea-field-resizing-tf2376275.html#a6620900 Sent from the JQuery mailing list archive at Nabble.com. ___

Re: [jQuery] mouse gestures?

2006-10-02 Thread Brian Litzinger
I don't know many people who would be able to write anything much with the mouse, but it'd be a proof of concept all the same. That's what Wacom tablets are for ;) -- View this message in context: http://www.nabble.com/mouse-gestures--tf2359444.html#a6601083 Sent from the JQuery mailing list

Re: [jQuery] mouse gestures?

2006-09-30 Thread Brian Litzinger
This is really good, and written better than what I could have done. In my case I'm needing it to affect numerous elements on the page such as li.sortableitem's. It doesn't seem to be allowing me to get the id of which element is clicked on. -- View this message in context:

[jQuery] mouse gestures?

2006-09-29 Thread Brian Litzinger
Has anyone done any work with mouse gestures? For example detecting if the user drug the mouse on a specific element at least 50 pixels left/right, right/left, up/down, down/up? -- View this message in context: http://www.nabble.com/mouse-gestures--tf2359444.html#a6573213 Sent from the JQuery

[jQuery] Hiding multiple elements, then showing one

2006-09-22 Thread Brian Litzinger
I have a little bit of code that I want to hide x amount of divs, then when they're all hidden to show a specific one. Right now I have this... // hide all found divs $(settings.slide).hide(); // get the slide that i want shown div = $(settings.slide).get(i); // show the slide when everything is