[jQuery] Plugin help: need dropdown (stylable in IE)

2009-04-28 Thread Kim 'Johnson' Cameron
Hello, Searching for dropdown in the plugin repository yields dozens of results, most of which have no comments. So I'm hoping someone out there with experience using the kind of plugin I need can chime in. :) Currently I have a SELECT field that contains theme names. Upon choosing a value in

[jQuery] Re: Best autocomplete plugin?

2008-06-25 Thread Kim Johnson
, June 25, 2008, 11:47 AM > I can recommend to use version 1.0.1 of my autocomplete > plugin, > released a few minutes ago, just for you: > http://plugins.jquery.com/project/autocompletex > > Let me know if you have any questions. > > Jörn > > On Wed, Jun 2

[jQuery] Best autocomplete plugin?

2008-06-25 Thread Kim Johnson
Hi folks, long time no chat ;) I'm redeveloping my site finally and am looking to update a few core jquery plugins. The current autocomplete I'm using is jorn's version, at least a year old. I came back to the jquery site to get the newest version, but I discovered that there are now several o

[jQuery] Re: Why is removeAttr necessary? (Instead of overwriting with attr)

2007-12-09 Thread Kim Johnson
te: > > Do you have some example code? That shouldn't fail > for any particular reason. > > --John > > On Dec 9, 2007 4:30 AM, Kim Johnson > <[EMAIL PROTECTED]> wrote: > > > > Hi folks, > > > > I just spent the last hour trying to figu

[jQuery] Re: Why is removeAttr necessary? (Instead of overwriting with attr)

2007-12-09 Thread Kim Johnson
...huh? I've written to this mailing list for over a year with jquery related questions. -Kim --- Saidur <[EMAIL PROTECTED]> wrote: > > Hi kim why you change the discusson subject. > > On Dec 9, 3:30 pm, Kim Johnson <[EMAIL PROTECTED]> > wrote: > > H

[jQuery] Why is removeAttr necessary? (Instead of overwriting with attr)

2007-12-09 Thread Kim Johnson
Hi folks, I just spent the last hour trying to figure out why a piece of jquery wasn't working, and finally tracked it down to inaccurately assuming you could overwrite an attribute with attr. Using attr to blank out values (ex: .attr("name", "")) seems to work fine, but as soon as I try to use i

[jQuery] Re: Karl, cluetip questions: Select IE6 bug ETA, and incorporating JTIP?

2007-08-22 Thread Kim Johnson
Wow, I had a long day at work and come back to all of this awesomeness! Thanks for the explanation, Karl... I guess I wasn't looking close enough to see that a jtip version already existed. I'll try incorporating this now and see what I can do, and will try to figure out bgiframe as well. thanks

[jQuery] Karl, cluetip questions: Select IE6 bug ETA, and incorporating JTIP?

2007-08-22 Thread Kim Johnson
Hi Karl, There are two major reasons why I am using JTip: 1. You had posted a fix for the select issue (select boxes showing up above the tooltip), which directly affects how I'm using the box so I need this functionality 2. The built in CSS styles has the little arrow shape that points to the

[jQuery] Re: Slow plugin scripts -- any way to speed them up?

2007-07-13 Thread Kim Johnson
he > event to see what > row is being acted on. > > look at this thread for inspiration: > > http://groups.google.com/group/jquery-en/browse_thread/thread/bc8ad59bce66b658 > > On Jul 12, 9:27 pm, Kim Johnson <[EMAIL PROTECTED]> > wrote: > > Hi folks, > &g

[jQuery] Slow plugin scripts -- any way to speed them up?

2007-07-12 Thread Kim Johnson
Hi folks, I run an information database and have been thwarted a few times by some of the popular plugins. Specifically, let's say I have 150 table rows on a page. I've used at least two plugins now (tablesorter and the star rating plugin) which first lag, and finally pop up the oh-so-happy "a sc

[jQuery] Jquery website: "each" not showing up in search

2007-07-12 Thread Kim Johnson
FYI for the admin (John?), "each" yields no results in the search. I understand it's a common word, but IMO all function names should be exempt from the old "common words don't always work" rule and should always show results. :) I couldn't remember where it was and found it after browsing, when

[jQuery] Re: jquery 1.1.3 and "undefined" variables

2007-07-08 Thread Kim Johnson
jax call if they are blank. An easy enough fix, just really troublesome due to the many places on the site I have similar code for; hence if there's an explanation, I'd love to know what's going on :) thanks, -kim --- John Resig <[EMAIL PROTECTED]> wrote: > > Kim - > >

[jQuery] jquery 1.1.3 and "undefined" variables

2007-07-08 Thread Kim Johnson
Hi folks, I had 100% working jquery code throughout my site, but upon updating to the newest version, a TON of stuff is no longer working. Specifically, "undefined" is showing up in various variables being passed around or gotten via selectors. One thing I've found is that while in the past a bla

[jQuery] Re: Hiding select options in IE?

2007-06-01 Thread Kim Johnson
Hi Luc, I just had to figure out a similar problem, and dynamically remove a select option. Thankfully, there is an easy plugin available: http://www.texotela.co.uk/code/jquery/select/ >From the page: Remove an option by index: $("#myselect2").removeOption(0); or value: $("#myselect").removeOpt

[jQuery] Re: Event binding for both body.click AND body.change?

2007-05-31 Thread Kim Johnson
anks, -kim --- Kim Johnson <[EMAIL PROTECTED]> wrote: > > Hi folks, > > Quite awhile back, Karl pointed out to me the > fantastic article about event binding for ajax. I've > since implemented the following function > > $('body').click(function(e) {

[jQuery] Event binding for both body.click AND body.change?

2007-05-28 Thread Kim Johnson
Hi folks, Quite awhile back, Karl pointed out to me the fantastic article about event binding for ajax. I've since implemented the following function $('body').click(function(e) { if ($(e.target).is('img.closebutton')) { var attribute = "close"; buttons($(e.target), attribute);

[jQuery] Re: Star Rating System

2007-05-17 Thread Kim Johnson
I personally would still love to see the option built in for half star ratings; I've been waiting on integrating the plugin until such a thing is available. :) (half star ratings meaning, you can rate something 3.5 stars, as opposed to just the average showing up as 3.5 stars once the integer rat

[jQuery] Re: Autocomplete (Jorn) plugin problems - click broken, etc

2007-04-24 Thread Kim Johnson
Hi Dan, Though my response is late, thanks for your reply. :) I implemented your plugin without a hitch and it works perfectly. I'm fiddling with using IDs now and will post with any other questions I come up with. thanks again! And I hope Jorn sees these issues for his plugin too. -kim ---

[jQuery] Re: Arbitrary Number of Parents

2007-04-21 Thread Kim Johnson
If I'm understanding correctly, then you can do $(this).parents("div.foo") (where "this" can be substituted, of course, with whatever the "context" is) :) .parent (singular) will get THE parent, while parents will keep searching up (I think?). Someone correct me if I'm wrong -- I'm still dece

[jQuery] Re: Autocomplete (Jorn) plugin problems - click broken, etc

2007-04-21 Thread Kim Johnson
Note: In addition, this only works in IE6 :( (firefox doesn't initialize it at all) --- Kim Johnson <[EMAIL PROTECTED]> wrote: > > Hello, > > So now I'm trying to implement Jorn's fantastic > autocomplete revision, and am encountering some > probl

[jQuery] Autocomplete (Jorn) plugin problems - click broken, etc

2007-04-21 Thread Kim Johnson
Hello, So now I'm trying to implement Jorn's fantastic autocomplete revision, and am encountering some problems. Problem page: http://anime-planet.com/anirec/recommendation2.php?animeid=2 Autocomplete initialization: $("#rec1").autocomplete( "autocomplete_anirec.php", {

[jQuery] Is there an image cropping plugin?

2007-04-20 Thread Kim Johnson
Hi folks, I'm wanting to do the following thing: 1. User browses for an image 2. User crops image with a pre-set sized outline 3. Image is uploaded onto the server I know how to do #1 and #3. I also know how to do the error checking stuff like making sure the file/image is the right size, etc.

[jQuery] Is it possible to bunch rules in Jorn's validator plugin?

2007-04-10 Thread Kim Johnson
Quick question: is it possible to bunch rules together in Jorn's validator, similar to how you can bunch cases in a switch statement? Ex: rules: {storyscore: {required: true}, story: {required: true}, animationscore: {required: true},

[jQuery] Re: TableSorter issues: special characters, mixed data

2007-04-05 Thread Kim Johnson
. --- Kim Johnson <[EMAIL PROTECTED]> wrote: > Super close, but not quite! :) > > http://anime-planet.com/users/reviewindex.php?usersid=1 > > $("#userreviewtable").tableSorter({ > sortColumn: 'title', > stripingRowClass: [&#

[jQuery] Re: TableSorter issues: special characters, mixed data

2007-04-05 Thread Kim Johnson
t; formatted with two digests the parser will parse 07 > as 1997 since there is > no way for it to know that you > properly mean 2007. So my suggestion is to change > this to a full 4 digit > year format. > > If you do change the the year to a 4 digit format > remove the

[jQuery] Re: TableSorter issues: special characters, mixed data

2007-04-05 Thread Kim Johnson
Thanks Christian! I just pasted that in and indeed, now there isn't a JS error and it sorts correctly by title. However, now something strange is happening and the other fields don't sort -- they all sort by title! The date specifically is what I just tried. Here are two sample pages: http://an

[jQuery] Re: TableSorter issues: special characters, mixed data

2007-04-04 Thread Kim Johnson
Anyone know a workaround for this? :) Christian, any thoughts? -kim, who would really like to not code a bunch of tablesorting tonight in php ;) --- Kim Johnson <[EMAIL PROTECTED]> wrote: > > ATTN: Christian or anyone else familiar :) > > I'm trying to use Tabl

[jQuery] Re: How to change form data before submitting to form plugin?

2007-04-04 Thread Kim Johnson
Thanks Mike! What is the best way to change the data? I tried a number of things including accessing formData with array notation (formData[2].value = str_md5(tmp) (where tmp is a copy of formData[2].value), direct access (formData["password"]), and also I tried, just in case, using it like a jqu

[jQuery] How to change form data before submitting to form plugin?

2007-04-03 Thread Kim Johnson
Hi again folks, Almost finished with the form validation/form plugin combo! A quick question: I have a password field that I'd like to encrypt before sending via ajaxSubmit (a simple MD5 call would suffice). I know I can use beforeSubmit to do things, but am not sure how to physically change a

[jQuery] Re: Badly need help with ajaxForm/validator

2007-04-03 Thread Kim Johnson
es that you're concerned about work fine.) > > -Dan > > >-Original Message- > >From: jquery-en@googlegroups.com > [mailto:[EMAIL PROTECTED] On > >Behalf Of Kim Johnson > >Sent: Tuesday, April 03, 2007 3:48 AM > >To: jquery-en@googlegroups.com

[jQuery] Badly need help with ajaxForm/validator

2007-04-03 Thread Kim Johnson
I've been working on this for three days and can't for the life of me figure out the best solution. I have a login area on every page. My (old but working) code is the following: $("div#login input#login_btn").click(function() { $.ajax({ type: "POST", url: "/users/login.php",

[jQuery] TableSorter issues: special characters, mixed data

2007-04-02 Thread Kim Johnson
ATTN: Christian or anyone else familiar :) I'm trying to use TableSorter for a few large batches of data, but am getting JS errors depending on what content is in the columns. For example: -Digit-only data works, but MIXED data (ex: some fields are empty, and some have decimal values) fails. -