[jQuery]

2009-12-29 Thread Ian Escarro

[jQuery] Re: Trigger button click event when lost focus in textbox

2009-11-18 Thread Ian Escarro
Nevermind. I put the function click to another function and trigger the function in textbox's blur event. Thanks. On Tue, Nov 17, 2009 at 5:06 PM, ian ian.esca...@gmail.com wrote: I have a textbox and button to check items in the database. The thing is I want to trigger the button click event

[jQuery] Trigger button click event when lost focus in textbox

2009-11-17 Thread ian
I have a textbox and button to check items in the database. The thing is I want to trigger the button click event when textbox is lost focus. This is my click event. $(document).ready(function() { $(#button_from).click(function() { $(#waitingFrom).show();

[jQuery] jQuery Cycle Manual With Text?

2009-08-19 Thread Ian Gordon
I am trying to create something like this: http://i27.tinypic.com/29p3woi.jpg The text would be a span tag or something similar. The progress buttons don't have to be the dots I can use floated next and previous arrows. Is this doable using jQuery Slideshow or Cycle, preferably Cycle since it

[jQuery] tablesorter not sorting numbers correctly

2009-07-16 Thread Ian Stokes-Rees
regarding how to correct this would be greatly appreciated. Ian

[jQuery] Smipple - Social Code Snippets

2009-06-29 Thread Ian Lewis
contributing any kind of snippets that they want. We'd love it if Ruby, PHP, Java, JavaScript or Perl developers would use the site as well! What kind of social sharing site would it be if there were only certain types of developers using it after all! Happy Coding, Ian

[jQuery] Browser differences in handling xml file structures?

2009-05-14 Thread Ian Piper
do I get the data I need out of the complex xml data reliably in other browsers? Thanks for any advice you may be able to offer. Ian. -- xml ?xml version=1.0 encoding=UTF-8? zs:searchRetrieveResponse xmlns=http://www.mystuff.co.uk; xmlns:zs=http://www.loc.gov/zing/srw

[jQuery] Re: Cluetip not working on multiple links calling local html data

2009-04-10 Thread Ian
Thanks a lot Karl. I'll give this a try. In the meantime I found a workaround by just setting display:none in the stylesheet for the local data divs. Thanks for a great plugin! Cheers, Ian On Apr 9, 7:21 pm, Karl Swedberg k...@englishrules.com wrote: Hi there Ian, So sorry about

[jQuery] Cluetip not working on multiple links calling local html data

2009-04-09 Thread Ian
, of course, but the principle applies to a larger web-app I'm working on. Thanks, Ian

[jQuery] How to force jCarousel to scroll a certain amount of items at a time?

2009-03-25 Thread Ian
Please check the testing page: http://one.xthost.info/ian/jcarousel/test-1.html There are twelve items. And scroll: 6 was set in the configuration in order to scroll six items at a time. But it scrolls only five items and the last item ( box 12 ) is invisible. I have to scroll once again to see

[jQuery] Re: required field keeps on appearing

2009-03-12 Thread Ian Rogers
, with the two forms inside the table definition the error labels get duplicated. Any ideas how I could work arount this? Ian 2009/3/11 exhaler fadi...@gmail.com: i fixed the issue, turns out putting a form tag inside a table tag causes this problem

[jQuery] Re: [validate] email validation doesn't work!

2009-03-12 Thread Ian Rogers
But there's nothing invalid about that email *syntactically*. If you want the plugin to do an MX check or SMTP validate or something then you'll probably need to write a remote hook http://docs.jquery.com/Plugins/Validation/Methods/remote Ian 2009/3/11 mcreisi roman.reisenber...@gmail.com

[jQuery] Optimize Horizontal Scroll Interface

2009-02-08 Thread Ian
to be for both vertical and horizontal. Or could i run the calculation only at the end of scrolling, not whilst scrolling? Any tips or suggestions would be ace, im still learning! Cheers. Ian.

[jQuery] Wmode Flash in an iframe

2009-02-08 Thread Ian
and hid the element. Is there any way to hide an element once it is in a certain area of the screen? Cheers. Ian.

[jQuery] Re: $.data

2009-02-06 Thread Ian Lewis
The jQuery docs weren't good enough? http://docs.jquery.com/Internals/jQuery.data You should probably be using the data() function from core though. http://docs.jquery.com/Core/data Ian On Fri, Feb 6, 2009 at 4:51 PM, Chris J. Lee chri...@gmail.com wrote: I haven't been able to find good

[jQuery] jQuery Jitter in Firefox Problem (Please Help!)

2009-01-15 Thread Ian
I have created a website for a friend of mine that is a musician. The website is not live yet, it is on a hidden portion of the server. Anyways, the website is using jQuery to handle the pages. All of the code is actually on the index page and the jQuery tells what div on the page to show when a

[jQuery] Page Over Preview Navigation.

2008-05-20 Thread Ian
ramblling. Cheers Ian.

[jQuery] Postal Code Validation

2008-04-20 Thread Ian
I've noticed a lot of requests for Postal Code validation. I don't know if anyone posted one, but here is an addon method I wrote for Canadian postal codes. $.validator.addMethod(postalCode, function(value) { // Addon method for validating postal codes. Valid formats are (X1X 1X1) or (X1X1X1) or

[jQuery] Waiting for a click event...

2008-03-25 Thread Ian Fenn
() { $(this).hide(1000); }); }; } ...but this results in all divs being shown immediately - presumably the loop is being executed without a click being required? Is there a simple way around this? All the best, -- Ian

[jQuery] Re: tr not applying CSS

2007-12-20 Thread Ian Oxley
Does the class that you are applying to your tr set the background- color on the tr itself? If so, you might want to try modifying your CSS a bit to apply the background-color to the td elements in your tr like: tr.newClass td { background:#ff; } Hope this helps. On Dec 20, 4:31 am,

[jQuery] Re: What does === equate to?

2007-08-02 Thread Ian Struble
about truthy and falsy: http://developer.mozilla.org/en/docs/A_re-introduction_to_JavaScript#Other_types Ian On 8/2/07, Rob Desbois [EMAIL PROTECTED] wrote: I had a discussion on the use of the === and !== operators recently on this list, my opinion was, and still is, that unless you

[jQuery] Re: Need to attach .click() event to HTML anchor link but it won't stop bubbling...

2007-05-06 Thread Ian Struble
You can also try to attach a single event handler to the root node of your tree and then only process the clicks on A-tags. function iEatEventsForBreakfast(event) { var target = $(target.event); if (target.is(a)) { // search for and open/close the folder associated with target //

[jQuery] Widget Framework

2007-05-05 Thread Ian 'Nevir' MacLeod
Hey all, I'm working on a simplistic widget framework to better standardize how widgets work (if only for those that I'm writing) - I'd like to share it to hopefully generate some ideas with it before I get too involved The goals behind it (thus far) are to: * wrap widgets in such a way that

[jQuery] Re: Handle cross-site JSON in Form Plugin malsup

2007-05-05 Thread Ian 'Nevir' MacLeod
Unfortunately that's a limitation of XMLHttpRequest - for primarily security reasons, all browsers disable cross-domain ajax (in general) There are a couple solutions, one of which is to proxy the request through the local server (have it contact your other domain, rather than the browser)

[jQuery] Re: HTML Node

2007-05-05 Thread Ian 'Nevir' MacLeod
The XHTML 1.0 strict DTD defines id as an attribute on the html node (I haven't looked at transitional or 1.1 strict) !ELEMENT html (head, body) !ATTLIST html %i18n; id ID #IMPLIED xmlns %URI; #FIXED 'http://www.w3.org/1999/xhtml' On May 5, 1:15

[jQuery] Re: click event and z-order

2007-04-28 Thread Ian Struble
at body, td and div elements. Some the .stopTheEventBubbling elements will stop the event. Ian html head script src=http://code.jquery.com/jquery-latest.pack.js;/script script $(document).ready(function(){ function setupHandler() { var tag = this.toString(); $(tag).click(function(event

[jQuery] Re: Interacting with TR an TD

2007-04-28 Thread Ian Struble
$(this).addClass( 'allEmptyTds' ); }); }); Mike - Thanks but I can't take credit for mark and sweep. I think I got it while working on garbage collection in an OS class years ago. On 4/27/07, Feed [EMAIL PROTECTED] wrote: Thanks Ian, it seem to be working perfectly. I just have one more question: isn't

[jQuery] Re: Interacting with TR an TD

2007-04-28 Thread Ian Struble
+ return (return empty = false) on my first read. Glad I asked it though, it is definitely in my quiver now. Thanks, Ian

[jQuery] Re: Interacting with TR an TD

2007-04-27 Thread Ian Struble
Building on Karl's example and your new all-td's-must-be-empty requirement; mark all the TR's with a target class then sweep through the TD's and get rid of the target class if you find a td that is not empty. Play around a bit and see what else you can come up with. Ian $(document

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-18 Thread Ian Struble
of luck, we might be able to get away with one more message on the subject. One saying that the close code/work around has gone away. Ian On 4/18/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Jörn, if ( xml.overrideMimeType ) xml.setRequestHeader(Connection, close); I'm still not sure

[jQuery] Crashing IE 6, help

2007-04-13 Thread Ian Eure
I have a script that's crashing IE 6, hard. I'm not sure what's going on, and I don't know where to start debugging. I should mention that I'm not exactly inexperienced with debugging IE's oddities. But I don't usually encounter cases where IE simply crashes, so I'm not sure where to start.

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Ian Struble
of the request. I forget his reasons for that right now. Ian On 4/10/07, Aaron Heimlich [EMAIL PROTECTED] wrote: I vaguely remember there being some issue with older versions of Firefox that this solved, but don't quote me on that. On 4/10/07, Priest, James (NIH/NIEHS) [C] [EMAIL PROTECTED] wrote

[jQuery] Re: What does this do - transport.setRequestHeader(connection, close)

2007-04-10 Thread Ian Struble
Ditto :) On 4/10/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: thank you John, it always bothered me! On 4/10/07, John Resig [EMAIL PROTECTED] wrote: Personally, I think this fix should just be removed - especially considering that we don't even support versions of Firefox, that old, any more.