[jQuery] Re: error messages via remote validation

2010-01-13 Thread Kim
Just wanted to ask again if anyone has ever set up their php file called by the validator's remote method to return different error messages via JSON? I was hoping to see an example of how I might do this? Thanks so much. Kim On Jan 7, 2:59 pm, Kim wrote: > Hi, > > I am fairly

[jQuery] error messages via remote validation

2010-01-07 Thread Kim
Hi, I am fairly new to jquery, jquery validation and competely new to JSON. I was wondering if anyone could provide or point me to an example of a use of the remote method of the validation plugin that can display the error message returned by the remotely called php file. I have an input field

Re: [jQuery] Re: Why mootools animations is more smooth than jquery?

2010-01-06 Thread Paul Kim
It is, at least in my FF 3.5.7 on Win 7, but I haven't the slightest clue as to why. Thanks for sharing those demos. On Wed, Jan 6, 2010 at 1:29 PM, Scott Sauyet wrote: > On Jan 6, 3:44 pm, Acaz Souza wrote: > > MooTools:http://www.jsfiddle.net/4vnya/ > > jQuery:http://www.jsfiddle.net/eFbwJ/

Re: [jQuery] Re: jQuery does not stripe visible table rows correctly

2010-01-01 Thread Paul Kim
Thank you all for your helpful suggestions. On Fri, Jan 1, 2010 at 2:37 PM, Karl Swedberg wrote: > > On Jan 1, 2010, at 3:53 PM, Michael Geary wrote: > > I wouldn't use either version. > > Instead, I would change your CSS from: > > tr.rowodd { background-color: #FFF; } > tr.roweven { background-

Re: [jQuery] Re: jQuery does not stripe visible table rows correctly

2010-01-01 Thread Paul Kim
Thank you. Have a great New Year. 2010/1/1 Šime Vidas > Well, definitely the shorter version :) > You can put a comment above to remind you that :even and :odd are > tricky > > // Remember, :even and :odd are zero-based, so it's reversed > $('#foobar tbody tr:visible:even').addClass('rowodd'); >

Re: [jQuery] Re: jQuery does not stripe visible table rows correctly

2010-01-01 Thread Paul Kim
Thanks for your reply. Your solution works. I had a feeling that :even and :odd filters are zero-based, but found that to be "odd" in this situation. So now that I have 2 ways to stripe visible table rows using jQuery, which solution do you prefer? $('#foobar tbody tr:visible:even').addClass('

[jQuery] Tabs Custom HTML

2009-05-09 Thread kim...@gmail.com
Hi everyone, With the latest UI release custom html structure for tabs plugin seems to be unsupported, can you confirm this? Thanks.

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

2009-04-28 Thread Kim 'Johnson' Cameron
e select boxes - you're stuck with the gray arrow and ugly outline, etc. I assume the only way to handle this is to do a JS solution, so I'm looking for a good, stylable dropdown plugin. It doesn't need to do anything fancy like multiple select. Thanks! -Kim <>

[jQuery] How to know when body height causes a scrollbar to appear

2009-02-19 Thread Kim Christensen
his group, but can't seem to find anything like it (either that, or my google-fu is sub-par). Is there someone that has done something similar? Regards, Kim

[jQuery] Re: Execute function in parent window

2009-02-19 Thread Kim Christensen
t need to. The "opener" object is always accessible from a window opened with "window.open();". Regards, Kim

[jQuery] Scrolling animation problem in Safari

2008-09-27 Thread Kim
the flash of the top of the page, but can't work out how. Any suggestions appreciated, or any pointers on my general code structure if it looks rubbish! thanks Kim title some text text1 text2 text1 Some Text text2 Some Text fu

[jQuery] Re: this.style is null or not an object

2008-09-18 Thread kim
i've found the cause of the error. seems like jquery doesn't work well with scriptaculous. we are using the lightbox library, and it requires scriptaculous. after excluding the scriptaculous library, my jquery code works! is this a known issue? thanks. On Thu, Sep 18, 2008 at 7:01 PM, MorningZ <

[jQuery] Re: this.style is null or not an object

2008-09-18 Thread kim
ok, i had to make double checks and it's actually the when scriptaculous is used along side effects.js library. all these needed by lightbox. On Thu, Sep 18, 2008 at 9:07 PM, kim <[EMAIL PROTECTED]> wrote: > i've found the cause of the error. seems like jquery doe

[jQuery] Re: this.style is null or not an object

2008-09-18 Thread kim
i just added tried out this jQuery code: alert(jQuery('#showError')); jQuery('#showError').hide(); the alert resulted to "[object Object]", but the call to hide resulted to the error "this.display is null or not an object". i'm using IE7 by the way. On Wed, Sep 17, 2008 at 9:42 PM, Eric Martin

[jQuery] Re: this.style is null or not an object

2008-09-18 Thread kim
here's the page declaration: x Error OK On Wed, Sep 17, 2008 at 9:42 PM, Eric Martin <[EMAIL PROTECTED]> wrote: > > It sounds like an issue with your page. Do you have any code examples > or a page that I can view? > > On S

[jQuery] Re: this.style is null or not an object

2008-09-18 Thread kim
i didn't put a runat='server' attribute to the element so when we do a viewsource the id is still 'showError' even if it's inside a contentplaceholder control. On Wed, Sep 17, 2008 at 9:42 PM, Eric Martin <[EMAIL PROTECTED]> wrote: > > It sounds like an issue with your page. Do you have any code

[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
are now several other versions. Can anyone chime in with their experiences on the autocomplete plugins? Is Jorn's newest version still the best way to go? Thanks! -Kim

[jQuery] How can I access methods of an applet element using jQuery?

2008-04-19 Thread Philip Sebastian Immanuel Reinhardt Kim
Hi all, I have some problem using methods of an applet element when I use jQuery syntax. How can I solve this problem? Please refer to the following source code: // addValues() is a method defined in AppletXYLine.class returnValue = document.getElementById("ch01").addValues(strValue); //

[jQuery] Extend/Override jQuery Functions for IE6

2008-03-08 Thread Daniel S. Kim
After days of searching and experimenting with solutions for IE6 issues (peekaboo, etc.) I am having with my css implementation and jQuery, I believe a temporary work around is to extend/override (not sure what the exact term is) some jQuery functions when used in IE6. I am sure there is an actual

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

2007-12-09 Thread Kim Johnson
show the correct values for the attributes I'm trying to overwrite (by just using attr). THe problem was, the lines of code in firebug were sometimes changing, mostly not, so I think I inaccurately assumed it was a jquery problem. thanks! -kim --- John Resig <[EMAIL PROTECTED]> wro

[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
#x27;t work with attr? Is this a bug? Am I missing some kind of core concept? Thanks, ~Kim Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs

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

2007-08-22 Thread Kim Johnson
me as well. thanks! -kim --- Rey Bango <[EMAIL PROTECTED]> wrote: > > Mitchell, > > I believe what you're seeing is the slide down > effect that's an option > in clueTip. > > If you want to get around that just do something > like this: > > $(

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

2007-08-22 Thread Kim Johnson
ng this diamond shape idea, as opposed to keeping it just as a floating box with no link to the cursor tip itself. (or, if you don't, perhaps you have ideas on how I could hackjob it together from jtip code myself?) Th

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

2007-07-13 Thread Kim Johnson
t idea. Fine with my own scripts, but with a plugin, this is concerning as I'd really like to use it. thanks, -kim --- Eric Crull <[EMAIL PROTECTED]> wrote: > > Maybe you could attach to the click event for the > table (one > attachment instead of hundreds) and then filter t

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

2007-07-12 Thread Kim Johnson
d it easily dies. Doesn't seem to matter if I remove all other scripts on the page, either. This is one I rellly wanted to use, but I also can't remove rows from the pages. Do you guys know of any tricks to speed stuff up and squash the page loading slowly error? sor

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

2007-07-12 Thread Kim Johnson
it was and found it after browsing, when the search didn't work. just a heads up, -kim Yahoo! oneSearch: Finally, mobile search that gives answers, not web links. http://mobile.yahoo.com/mobileweb/onesearch?refer=1ONXIC

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

2007-07-08 Thread Kim Johnson
my ajaxed page (processanime.php) I'd simply do a check for if (!$var). But after the upgrade, it appears blank values are passed as undefined (I did an alert statement). I guess it's not really an "error", just seems like variables are now passed differently through the .a

[jQuery] jquery 1.1.3 and "undefined" variables

2007-07-08 Thread Kim Johnson
throughout the site now. Can someone explain what the fundamental change was in the newest jquery that is causing this to happen? I'd at least like to understand before I go around fixing all the affected areas. thanks, -kim ___

[jQuery] Re: Hiding select options in IE?

2007-06-01 Thread Kim Johnson
;ve selected a value, so here's my code: if (obj.attr("id") == "" && obj.containsOption("")) { obj.removeOption(0); } --kim --- Luc Pestille <[EMAIL PROTECTED]> wrote: > Hi all, > Thanks to IE's inability to dynamically hide/show > options with

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

2007-05-31 Thread Kim Johnson
Just wanted to do a quick followup -- by putting the select change binding BELOW the body binding, I got this code to work, but I'm still interested in knowing if there's a way to bind two different things to the body element (click versus change versus whatever). Anyone know? th

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

2007-05-28 Thread Kim Johnson
icking of the dropdown. Any thoughts would be greatly appreciated :) thanks, -kim Ready for the edge of your seat? Check out tonight's top picks on Yahoo! TV. http://tv.yahoo.com/

[jQuery] Re: Star Rating System

2007-05-17 Thread Kim Johnson
teger ratings are averaged) --kim --- Mario Moura <[EMAIL PROTECTED]> wrote: > Hi Folks > > I would like to suggest a improvement in this > amazing plugin > http://php.scripts.psu.edu/rja171/widgets/rating.php > > look http://www.imdb.com/title/tt0413300/ > >

[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.

[jQuery] Re: Arbitrary Number of Parents

2007-04-21 Thread Kim Johnson
orrect me if I'm wrong -- I'm still decently new to jquery... --kim --- wls <[EMAIL PROTECTED]> wrote: > > I've been reading about the many jQuery selectors, > and it seems that > there is great flexibility looking for descendants. > For instance // > DIV

[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
pens intermittently while doing a lot of combinations of things, but this is just one that happens every time. -- Any thoughts from Jorn or others? I'm wondering if the internal numbering of the dropdown items is messed up (or I haven't set them correctly via a plugin

[jQuery] Is there an image cropping plugin?

2007-04-20 Thread Kim Johnson
t changeable): http://interface.eyecon.ro/demos/resize.html However, I don't think this deals with the actual cropping part. Does anyone know if there's a plugin that deals with the actual crop, or can point me in the right direction of how I'd do that, myself? thanks :) -kim __

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

2007-04-10 Thread Kim Johnson
demo page that did this) -- insight would be appreciated! :) thanks, -kim Don't be flakey. Get Yahoo! Mail for Mobile and always stay connected to friends.http://mobile.yahoo.com/mail

[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
for 2 digits). However, the Custom line still doesn't do anything for sorting the score field. (I removed the 0's, as normally those fields would be BLANK, as opposed to 0). I also tried changing [2, 'integer'] to 'decimal' or 'double', to no avail. Any ideas o

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

2007-04-05 Thread Kim Johnson
e columns for textExtraction (using a comma, two separate lines for it, etc)? There is one other column (score) that in theory should be able to have either nothing, or a number. Note: I'm still down with helping you on the documentation front :) thanks! -kim --- Christian Bach <[EMAIL PROT

[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
it like a jquery object in various ways. I tried this with jqForm as well. In all of these cases when I then immediately alerted formData[2], the original value was the one outputted, not the changed version. thanks :) -kim --- Mike Alsup <[EMAIL PROTECTED]> wrote: > > Kim, > >

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

2007-04-03 Thread Kim Johnson
nge a value. I've attempted various things with jqForm and formData to no avail -- is it a correct assumption that there's no way to have the beforeSubmit function be call by reference? Regardless, I downloaded a JS MD5 script, just am not sure how to change the value before submitting

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

2007-04-03 Thread Kim Johnson
ECTED]> wrote: > > Kim, > > I just did a presentation where I put together a > demo that does all of these > things. > > Go to my blog and download my presentation: > http://blog.pengoworks.com/blogger/index.cfm?action=blog:585 > > Now the examples are in ColdFusio

[jQuery] Badly need help with ajaxForm/validator

2007-04-03 Thread Kim Johnson
login.php to be outputted if there are any (specifically, if the username/password don't work, I have a generic error message I need to pass back to display) 3. window.reload to be called if everything worked I know this is a vague re

[jQuery] TableSorter issues: special characters, mixed data

2007-04-02 Thread Kim Johnson
til this is "fixed" in a subsequent release). Do you know of the reason why these cases are breaking, and/or what a good workaround would be? thanks, -kim No need to miss a message. Get email on-the-go