Re: [jQuery] JQuery, Safari and show()

2006-08-09 Thread Karl Swedberg
, but there are two possibilities that I can think of. 1. css: /* #myDiv{ display; none } -- comment out this line */ js: $(document).ready(function() { $(#myDiv).hide(); }); 2. css: #myDiv{ display; none; } js: $(#myDiv).css(display,block); ___ Karl Swedberg www.englishrules.com

Re: [jQuery] jQuery for Wordpress

2006-08-14 Thread Karl Swedberg
? Karl ___ Karl Swedberg www.englishrules.com Yeah! It would be much easier to do with jQuery, and it's something I've contemplated doing for a while with my own blog. Wordpress currently tries to push Prototype/Scriptaculous/Dojo too much right now, and they're

[jQuery] SVN 228 jquery.pack.js does not work in Safari

2006-08-25 Thread Karl Swedberg
Hi all, Any idea why the compressed version (jquery.pack.js) of the latest SVN (228) doesn't work in Safari? Compare these two pages in Safari:http://sandbox.englishrules.com/index.htm - pointing to uncompressed, "lite" jquery .http://sandbox.englishrules.com/pack.htm - pointing to compressed

Re: [jQuery] Simple form setup

2006-08-30 Thread Karl Swedberg
know if that works for you. ___ Karl Swedberg www.englishrules.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Simple form setup

2006-08-30 Thread Karl Swedberg
On Aug 30, 2006, at 12:58 PM, Karl Swedberg wrote: Of course, if you don't want to stop the default event on click, you'll have to put return false; after validate(); (both without quotation marks). Oops! I meant if you /want/ to stop the default action... ___ Karl Swedberg

Re: [jQuery] John Resig: jQuery.com weirdness

2006-08-31 Thread Karl Swedberg
where else to do it, so here it is, fwiw. Cheers, Karl ___ Karl Swedberg www.englishrules.com On Aug 31, 2006, at 4:38 PM, John Resig wrote: It seems that the mailing list hasn't been picking up my posts (even though I'm a member), and GMail quickly fills up with posts

Re: [jQuery] Interface: Question about Blind Up/Down

2006-09-01 Thread Karl Swedberg
to see that additional text in that case if the css were set to display: none? Cheers, Karl ___ Karl Swedberg www.englishrules.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Menu with SelectBox showing through

2006-09-01 Thread Karl Swedberg
/485/496 . A couple things I think actually work well is its handling of nested uls and the 300ms delay before hiding a menu branch on mouseout. Cheers, Karl ___ Karl Swedberg www.englishrules.com ___ jQuery mailing list discuss

Re: [jQuery] Compilation of jQuery add-ons

2006-09-03 Thread Karl Swedberg
Here is a (temporary?) URL of the most complete list that I know of: http://proj.jquery.com/docs/Plugins/ Karl ___ Karl Swedberg www.englishrules.com On Sep 3, 2006, at 12:29 PM, Sam wrote: Is there a list of available 3rd party add-ons (e.g., behaviors, carousel, etc

[jQuery] Announcing the new Learning jQuery blog

2006-09-03 Thread Karl Swedberg
Hey everyone,Thought I'd let you know that I just started up a blog, learningjquery.com. As of now, it only has three entries, but I hope to add a few more each week. For the most part, it will cover basic things that can be done, how to get started, tutorials, and demos. Part of the inspiration

Re: [jQuery] Semi-New jQuery Site Live

2006-09-03 Thread Karl Swedberg
On Sep 3, 2006, at 7:36 PM, John Resig wrote:Good catch, I've revamped the source code page completely. There's now only "latest" and Subversion Great! Now there's another issue with that page: Do you want the compressed or the uncompressed to be the recommended download? They're both labeled

Re: [jQuery] jCarousel

2006-09-05 Thread Karl Swedberg
into the svn version of compat.js, which John is working on to get jquery and prototype working nicely together: http://jquery.com/dev/svn/plugins/compat/ Cheers, Karl ___ Karl Swedberg www.englishrules.com ___ jQuery mailing list

Re: [jQuery] Semi-New jQuery Site Live

2006-09-06 Thread Karl Swedberg
So, for now, just post messages to this thread and we can sort thingsout as they come in.A friend of mine pointed out another issue with the semi-new jquery.com. It has to do with the design, not the content, so please forgive me if that makes this post off-topic. Just trying to help out... In IE6

Re: [jQuery] Next Div

2006-09-06 Thread Karl Swedberg
On Sep 6, 2006, at 4:30 PM, Lipka, Glen wrote:I have a list of anchor links with hidden divs between them.I want to put a toggle on all of the A links to open up the div which is right next to it. Try this:      $("a.questionLink").toggle(function(){           

Re: [jQuery] Next Div

2006-09-06 Thread Karl Swedberg
On Sep 6, 2006, at 4:44 PM, Karl Swedberg wrote:Try this:      $("a.questionLink").toggle(function(){            $(this).next('div').slideDown("slow");        },function(){            $(this).next('div').slideUp("slow");        });        return false;     });   Oops

Re: [jQuery] Thickbox 2.1 Address Book second edition release

2006-09-07 Thread Karl Swedberg
On Sep 7, 2006, at 12:21 AM, TungAlex wrote: Why I can't use center() in jquery 1.01 ?? It looks like center() was pulled out of core and put in a plugin. See here: http://jquery.com/dev/svn/plugins/center/ ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] swapClass

2006-09-07 Thread Karl Swedberg
On Sep 7, 2006, at 3:05 PM, Wil Stuckey wrote:Im pretty sure toggleClass simply adds and removes a single class name.Hi Wil,Ah, yes, you're right. My mistake. And sorry for misspelling your name last time. :) Karl___Karl Swedbergwww.englishrules.comwww.learningjquery.com

Re: [jQuery] Why I love jQuery...

2006-09-08 Thread Karl Swedberg
You can find the Pause plugin here: http://www.mythin.net/projects/jquery.phpYou can also see a big list of jQuery plugins (including Pause) here: http://jquery.com/docs/Plugins/Cheers,Karl ___Karl Swedbergwww.englishrules.comwww.learningjquery.com On Sep 8, 2006, at 10:48 AM,

Re: [jQuery] little help

2006-09-09 Thread Karl Swedberg
you can see a functioning example. Just view source from the page and copy and paste what you want: http://sandbox.englishrules.com/show- hide.htm Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01

Re: [jQuery] code ideas: if mouseover for 5 seconds then do this else do nothi ng

2006-09-14 Thread Karl Swedberg
On Sep 14, 2006, at 2:04 PM, Lewis, David wrote:I think that this should be possible by creating a time delay function [setTimeout()] that is started on the mouseover event and cancelling the timer delay function [clearTimeout()] on the mouseout eventI've done just such a thing with jQuery, but in

Re: [jQuery] VisualjQuery.com down?

2006-09-15 Thread Karl Swedberg
On Sep 15, 2006, at 9:55 AM, Brandon Aaron wrote: Just curious if anyone else is having problems loading visualjquery.com right now? working fine for me. ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery

Re: [jQuery] NetFlix Style Popup

2006-09-15 Thread Karl Swedberg
); It loads the page identified by the url variable into the #JT_copy div. Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Drop Cap help - how to remove a single character?

2006-09-16 Thread Karl Swedberg
Hi folks,I'm trying to convert a little drop cap thing that I had done in DOM scripting to jQuery. Adding the drop cap image has been incredibly easy, but I'm stumped on how to remove the single letter of text that the image is replacing. I'm sure this is really simple, but I'm just not getting

Re: [jQuery] Drop Cap help - how to remove a single character?

2006-09-16 Thread Karl Swedberg
again, karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Drop Cap help - how to remove a single character?

2006-09-17 Thread Karl Swedberg
: pstronghello/strong/p It was trying to turn the into a drop-cap image. For now, I just added as a condition that the first letter couldn't be , so those pages won't get the drop cap. Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] Possible to In/Decrease element with jQuery

2006-09-19 Thread Karl Swedberg
, but it might be a viable alternative Here is the demo page: http://interface.eyecon.ro/demos/expander.html Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] JTip Issue with IE

2006-09-21 Thread Karl Swedberg
perfect) Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Fader code I duplicated using JQuery

2006-09-22 Thread Karl Swedberg
. Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Visual jQuery Magazine

2006-09-22 Thread Karl Swedberg
On Sep 22, 2006, at 6:11 PM, Yehuda Katz wrote:One of the nice things about having a *digital* publication is that I can make these changes :). Expect an updated copy of the Visual jQuery Magazine in a few days for archival purposes.Well done, Yehuda! I've just posted an announcement about Issue 1

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Karl Swedberg
to indicate that I wasn't wrapped around the axle about it, but I couldn't find the right one for the job. :-) So, please forgive me if my comments came out with too much force. Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Karl Swedberg
choice of words? Respectfully, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Magazine Typo corrections

2006-09-26 Thread Karl Swedberg
On Sep 26, 2006, at 9:40 AM, Yehuda Katz wrote:I, for one, was quite pleased with the corrections, and may call on some of the list members who made corrections to proofread the magazine in future issues. Anyone interested?I'd love to help out. As a former high-school and college writing

Re: [jQuery] Tabs plugin: Truly bookmarkable finally

2006-09-27 Thread Karl Swedberg
___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] JTip Mods by Karl Swedberg

2006-09-27 Thread Karl Swedberg
On Sep 27, 2006, at 11:48 AM, Rey Bango wrote: Guys, Karl Swedberg has been working on a mod that he and talked about and I think he's done an excellent job. He may be too modest to show it but I wanted to give him some kudos for some excellennt work. The current implementation of JTip

Re: [jQuery] iUtil use it

2006-09-30 Thread Karl Swedberg
in there. Now my question is, how will iUtil help us? How can we use it? Is there any documentation for it that will show how to get the most out of it? Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] Help with the SVN Build Process

2006-10-01 Thread Karl Swedberg
, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Modified JTip Plugin

2006-10-02 Thread Karl Swedberg
see this problem? I haven't seen the problem you mention in the following browsers: - Windows IE 6.0 - Safari 2.0.4 - Firefox 1.5.0.7 (Windows and Mac) thanks again, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] Modified JTip Plugin

2006-10-02 Thread Karl Swedberg
On Oct 2, 2006, at 9:58 AM, Karl Swedberg wrote: On Oct 1, 2006, at 10:28 PM, Donny Kurnia wrote: Just see it. In my browser window at screen resolution 1280x900, the page initially don't have any scrollbar. When I put my mouse above the link, the tip make the scrollbar appear, then slide

Re: [jQuery] Modified JTip Plugin

2006-10-02 Thread Karl Swedberg
On Oct 2, 2006, at 10:52 AM, Jörn Zaefferer wrote: Karl Swedberg schrieb: One more thing (sorry for the extra message, but I should have put this in the first one...) : If anyone else would be willing to take a look at this and offer feedback/critique, etc., I would be most grateful

Re: [jQuery] Modified JTip Plugin

2006-10-02 Thread Karl Swedberg
should obviate the problem. It won't have the magic slide anymore (which I can't help but get a kick out of), but it should be more usable. Will notify as soon as I've made the change. Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] Modified JTip Plugin

2006-10-02 Thread Karl Swedberg
On Oct 2, 2006, at 11:34 AM, Jörn Zaefferer wrote: Karl Swedberg schrieb: I suppose all the jTips could load in a hidden state on document.ready, which would make their height available immediately on hover. Maybe that would slow page load, though? Any other, better ideas? You could just

Re: [jQuery] input and textarea field resizing

2006-10-03 Thread Karl Swedberg
. http://interface.eyecon.ro/ It's called Autoexpand. Here is the demo page: http://interface.eyecon.ro/demos/expander.html Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss

Re: [jQuery] Full featured form validation library in jQuery?

2006-10-03 Thread Karl Swedberg
not full-featured enough? Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 3, 2006, at 12:50 PM, Brandon Aaron wrote: Actually I've built a library much like the one you are using for in-house at our company and was thinking about porting

Re: [jQuery] Autocomplete Plugin: iframe visible in IE6.

2006-10-04 Thread Karl Swedberg
and width of the iframe as well. You might want to use one of the bgiframe plugins available: http://svn.brandonaaron.net/svn/jquery_plugins/bgiframe.js or http://stilbuero.de/jquery/bgiframe/jquery.bgiframe.js Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] New tableSorter demo, custom text extraction and more.

2006-10-04 Thread Karl Swedberg
, it was sorted between 1.00 and 5.00. Overall, great stuff! Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] JCarousel + ajax + Safari = trouble!

2006-10-04 Thread Karl Swedberg
the problems (even though I don't think the other elements are causing the problems). Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com On 10/2/06, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: My first jquery page was to celebrate my new puppy, I had a few pictures, and I

Re: [jQuery] New tableSorter demo, custom text extraction and more.

2006-10-04 Thread Karl Swedberg
On Oct 4, 2006, at 6:10 PM, Christian Bach wrote: Karl Swedberg wrote: I agree, both on the links part and the groovy part. :) Also, the input column didn't sort as I expected. Looked like maybe it treated the numbers as string? Anyway, when I changed the 7.00 cell to 10.00, it was sorted

Re: [jQuery] Plugin Rewrite: Accordion

2006-10-05 Thread Karl Swedberg
#edef_list_di Alas, it's xhtml 2.0 working draft. :( Anyone else have any ideas on this? Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Plugin Rewrite: Accordion

2006-10-05 Thread Karl Swedberg
: http://jquery.com/discuss/2006-August/010451/ (then he got sick) -- Fil Ah, yes. Don't know how I missed that. Would be great to see that added to core. John, is that still in the works? Any ETA? Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] Add to attr() before using

2006-10-06 Thread Karl Swedberg
: $(this).attr (href)... mean that the img element's own href attribute is being used for its src element? Shouldn't it be src: $(this).parent().attr (href)... so that it uses the a element's href? Or, am I totally missing something? Karl ___ Karl Swedberg www.englishrules.com

Re: [jQuery] Cheat Sheet?

2006-10-07 Thread Karl Swedberg
/ jquery_cheat_sheet_080306_v1_pg2.pdf PNG http://www.define-web.com/jquery_cheat_sheet/ jquery_cheat_sheet_080306_v1.png http://www.define-web.com/jquery_cheat_sheet/ jquery_cheat_sheet_080306_v1_pg2.png Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] New plugin: sparkline

2006-10-07 Thread Karl Swedberg
if it works fine with FF on Linux, it doesn't behave correctly with Konqueror. I assume it's the same with Safari... Cool plugin! Looks good to me in Safari. Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] Performance question

2006-10-07 Thread Karl Swedberg
, followed by elements, and then classes. At least, that's how I've understood previous discussions of the topic. So: a. $('#my-id') is faster than $('div#my-id'), and b. $('div.my-class') is faster than $('.my-class') Hop that helps. Karl ___ Karl Swedberg www.englishrules.com

Re: [jQuery] Drop down menu

2006-10-07 Thread Karl Swedberg
Feel free to use any code you want from mine, too. I haven't completely polished it up yet, but I'll be writing up something about it within the next couple weeks on learningjquery.com, so I'll be making it look a little prettier in the

Re: [jQuery] Cheat Sheet?

2006-10-09 Thread Karl Swedberg
On Oct 9, 2006, at 6:18 AM, Dan Atkinson wrote: FYI: Every single one of those links leads to a 'forbidden' page. Karl Swedberg-2 wrote: On Oct 6, 2006, at 11:41 PM, Rey Bango wrote: I recall a JQuery cheat sheet floating around. Anyone have the link to that? Hi Rey, They came from

Re: [jQuery] Load problem

2006-10-10 Thread Karl Swedberg
Hi Glen,When I put "jQueryGlobalFunctions();" into FireBug, I got "False." I'm guessing that your "return false" inside toggle() is in the wrong place. Try putting it right after $("img.handle").src("images/barHandleup.gif"); and $("img.handle").src("images/barHandledown.gif"); and remove it from

Re: [jQuery] Load problem

2006-10-10 Thread Karl Swedberg
On Oct 10, 2006, at 1:41 PM, Karl Swedberg wrote:When I put "jQueryGlobalFunctions();" into FireBug, I got "False." I'm guessing that your "return false" inside toggle() is in the wrong place. Try putting it right after $("img.handle").src("images/barHa

Re: [jQuery] interface Slider problem with floats

2006-10-11 Thread Karl Swedberg
like the slider control is being absolutely positioned relative to the document body. Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] More jQuery Tutorials (was unsuscribe)

2006-10-12 Thread Karl Swedberg
quickly. Thanks for the suggestion! That makes me think that one on jQuery's CSS, XPath, and custom selectors would be good, too. ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss

Re: [jQuery] More jQuery Tutorials (was unsuscribe)

2006-10-12 Thread Karl Swedberg
. Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Form plugin revisited ;-)

2006-10-12 Thread Karl Swedberg
. Perfect score! Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery Website Gallery

2006-10-13 Thread Karl Swedberg
start it simple with a page in the Wiki. Excellent idea, Matt! A page in the Wiki would be a great start. And if sites.jquery.com is out of the question, I'd be happy to donate sites.learningjquery.com. Cheers, Karl ___ Karl Swedberg www.englishrules.com

Re: [jQuery] the meaning of .blur() and a new tutorial

2006-10-15 Thread Karl Swedberg
solution. Looks like you provided it for me with this.blur(). Thanks again! Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] searching for a code editor with jquery support (or a way to bring an editor to do it)

2006-10-15 Thread Karl Swedberg
://www.learningjquery.com/2006/09/textmate-bundle-for-jquery ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] slideToggle Not Completely Expanding in Firefox

2006-10-17 Thread Karl Swedberg
- height, it got very close, but not all the way, towards preventing the overlap. Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] best show/hide div code?

2006-10-18 Thread Karl Swedberg
On Oct 18, 2006, at 2:09 PM, Rey Bango wrote:I initially tried the toggle() method but it didn't provide the correct functionality for this specific issue.That's right; it doesn't provide functionality for onchange. .toggle() is for click only. From the API:"Toggle between two function calls every

Re: [jQuery] Test suite failures

2006-10-20 Thread Karl Swedberg
server now. Yippee! Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Test suite failures

2006-10-20 Thread Karl Swedberg
? Could the problem be with my old Powerbook? (867 MHz PowerPC G4, 640MB DDR SDRAM) here is the URL where I tried it: http://test.learningjquery.com/test/ thanks, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 20, 2006, at 11:43 PM, Karl Swedberg wrote

Re: [jQuery] jQuery on mozilla

2006-10-26 Thread Karl Swedberg
to John and Dylan for the good exposure to their fantastic work! Cheers! Karl p.s. please excuse the overabundance of exclamation points. ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss

Re: [jQuery] Sortables, new approach

2006-10-26 Thread Karl Swedberg
to be? Or is that just because it's a demo and it can be adjusted? Thanks for your amazing plugins! Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 26, 2006, at 1:16 AM, Stefan Petre wrote: Hi James and Norbert, http://interface.eyecon.ro/demos

Re: [jQuery] Improved Event system new Accordion

2006-10-27 Thread Karl Swedberg
While on the subject of accordion plugins, wouldn't it be nice to use John's nextUntil() plugin for the definition-list accordion so that a DT could take multiple DDs? Just a thought. Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 27, 2006, at 3:37

Re: [jQuery] Fluent Text Highlighting

2006-11-02 Thread Karl Swedberg
That's pretty cool! I don't know where I'd use it, but I had fun increasing and decreasing the text size to see the change in what was black and what was blue. Nice work!Karl ___Karl Swedbergwww.englishrules.comwww.learningjquery.com On Nov 2, 2006, at 9:44 AM, Paul Bakaus wrote:Hi

Re: [jQuery] Capture tab focus in dialog window

2006-11-03 Thread Karl Swedberg
-using-the-mouse-- tf2262734.html#a6281021 ___ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 3, 2006, at 4:42 AM, Klaus Hartl wrote: Jörn Zaefferer schrieb: You can fix this very easily without doing all wierd stuffies like changing tab index

Re: [jQuery] checking for cookie

2006-11-03 Thread Karl Swedberg
Here is the Cookie plugin, written by Klaus Hartl: http://jquery.com/dev/svn/trunk/plugins/cookie/cookie.js?format=txt Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 3, 2006, at 1:14 PM, bmsterling wrote: Is there a way to check for cookies

Re: [jQuery] Problem with Events

2006-11-03 Thread Karl Swedberg
() { $('p').click( function() { alert(Hello); } ); }); -- Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com On 11/3/06, Muckinger [EMAIL PROTECTED] wrote: I want to use events with jquery and tried the example: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01

Re: [jQuery] Problem with Events

2006-11-03 Thread Karl Swedberg
. It's Friday. Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Overlapping divs toggleContent function

2006-11-05 Thread Karl Swedberg
Hi Bruce, Using the web developer toolbar in FF, I got rid of the height value for #toolbar, and now it works fine. ___ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 5, 2006, at 5:25 AM, Bruce MacKay wrote: Hi folks, I'm having a problem in FF2

Re: [jQuery] banner rotation

2006-11-05 Thread Karl Swedberg
Hi Jardel,I've done this on a couple sites:http://www.vikinggroupinc.com/http://www.davidlagrand.com/Take a look at the source code and find the _javascript_ files in there. Take anything you want. You'll also want to make sure you're using proper CSS for it -- making the containing DV position:

Re: [jQuery] banner rotation

2006-11-05 Thread Karl Swedberg
-headline-reader Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery 1.0.3 .click() not firing in IE

2006-11-06 Thread Karl Swedberg
what you're looking for. When you get to a page of code that you want to grab, just add the following to the URI: ?format=txt Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss

Re: [jQuery] Plugin Release: Tooltip

2006-11-06 Thread Karl Swedberg
, but not easy to implement. I should ask Karl Swedberg for his experience on that topic, I think he and Rey already (tried to) solve that for their jTip adoption. Actually, Cody's jTip had the flipping part in it before I got my hands on it, so credit go to him. :) I just added a couple

Re: [jQuery] New way of animating

2006-11-06 Thread Karl Swedberg
Submission - Create a Basic Plugin - Collapsible Details Using Definition Lists and Brandon Aaron has been working on Populating a Select Menu with JSON and AJAX. Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] New plugin draft: animateClass

2006-11-07 Thread Karl Swedberg
On Nov 7, 2006, at 7:35 AM, Paul Bakaus wrote:Hi guys,as Rey proposed, I went on and created a first version of animateClass.With animateClass, you can animate an element from one class to a new one. Let me provide you an example:You have a form input with class "default". This class is defined in

Re: [jQuery] New plugin draft: animateClass

2006-11-07 Thread Karl Swedberg
On Nov 7, 2006, at 10:48 AM, Paul Bakaus wrote:Thanks Karl!I improved it again in my free minutes during work:1) Added Go back buttons to the demo page (I will include a toggler as example 3)2) Greatly improved performance on static elements3) A element can now have hard coded style tags that will

Re: [jQuery] new plugin: AnimateClass/animateStyle

2006-11-09 Thread Karl Swedberg
On Nov 9, 2006, at 10:29 AM, Paul Bakaus wrote:I'm not sure it's spectacular ;-)I think highlightFade is still a great specialized plugin, I have used it before! I haven't looked at your code, maybe you can cross-check mine (the parts with the color functionality), tell me if you see some possible

Re: [jQuery] .clone and form elements

2006-11-09 Thread Karl Swedberg
) and that give me an error. Any tips? Maybe something like this? $(#claims).clone().appendTo(#ap); $('#ap select').val(); ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss

Re: [jQuery] The jQuery Design/Coding Process

2006-11-10 Thread Karl Swedberg
On Nov 9, 2006, at 11:45 PM, Chinmay Kulkarni wrote:On a related note, any editors that support autocomplete/suggest and code-folding for jQuery? If you own a Mac, you can try TextMate and download the jQuery bundle. Instructions

Re: [jQuery] How I use jQuery

2006-11-11 Thread Karl Swedberg
just repeating something you already know, but a common workaround for the aliasing problem is to make sure you're giving the containing element a background color. Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] Loop through all elements of a form

2006-11-12 Thread Karl Swedberg
with the string bar * [EMAIL PROTECTED] an E element whose foo attribute value contains the substring bar Hope that helps. Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http

Re: [jQuery] Loop through all elements of a form

2006-11-12 Thread Karl Swedberg
] Not to complicate matters, but wouldn't input:hidden do the same thing as [EMAIL PROTECTED] ? ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Loop through all elements of a form

2006-11-12 Thread Karl Swedberg
, because some parent of the input element could have display:none and it would still be selected even though the user can't see it. Ah, yes, of course! Thanks, Dave, for clarifying. :) Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] Add a behaviour when page loads newbie

2006-11-14 Thread Karl Swedberg
display:block in modern browsers */ ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Add a behaviour when page loads newbie

2006-11-14 Thread Karl Swedberg
is to use conditional comments. Quirksmode is also a good resource for this: http://www.quirksmode.org/css/condcom.html for more Klaus, I always greatly appreciate your input on this list. Thanks for offering smart, thoughtful help. Cheers, Karl ___ Karl Swedberg www.englishrules.com

Re: [jQuery] jQuery 1.1 by the end of Nov

2006-11-16 Thread Karl Swedberg
would be sad to see .click, .hover, and .toggle go away, if they are among the helper functions you plan to put into an external plugin. They just make so much more sense than bind to people new to programming/javascript/jQuery. Just my $.02 Karl ___ Karl Swedberg

Re: [jQuery] jQuery 1.1 by the end of Nov

2006-11-16 Thread Karl Swedberg
. Then I stripped out all single-line comments and empty lines. With the introductory licensing comments still included, the file came to 838 lines of code and 28k -- uncompressed! Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com

Re: [jQuery] jQuery 1.1 by the end of Nov

2006-11-16 Thread Karl Swedberg
here. Especially when the function is overloaded so that .click () [with no args] *is* a verb, i.e. it triggers the click event. Nasty! Well, that all makes sense to me. Glad to hear that hover() and toggle () will stay, though. Thanks, guys. Karl ___ Karl Swedberg

Re: [jQuery] expression question

2006-11-16 Thread Karl Swedberg
Hi Lucien, Welcome to the jQuery mailing list! You're on the right track, but instead of doing this: $(this.following-sibling).slideDown(slow); try this: $(this).next().slideDown(slow); --Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 16, 2006

Re: [jQuery] Move element to top of outside element, how?

2006-11-18 Thread Karl Swedberg
You might also want to check out Stefan Petre's Interface plugin, which has a sortables module, if you want to do more moving around of divs. http://interface.eyecon.ro/ Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 18, 2006, at 5:41 AM, Subway

[jQuery] jQuery Donate

2006-11-18 Thread Karl Swedberg
now before I make a complete sappy fool of myself (I hope it's not too late). Cheers, Karl ___ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Zooming ThickBox

2006-11-25 Thread Karl Swedberg
this effect with minimal extra coding. Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

  1   2   3   4   >