Re: [jQuery] jquery.corner.js freezes IE6

2007-01-25 Thread Olaf Bosch
Juan G. Hurtado schrieb: > Hi all, > > I needed to use the jQuery rounded corners plugin in the project I'm > working at the moment. But when I try to round more than one element, > IE6 freezes, and I need to kill the proccess. After that, I visited > the plugin's examples page, with IE6, an

[jQuery] jquery.corner.js freezes IE6

2007-01-25 Thread Juan G. Hurtado
Hi all, I needed to use the jQuery rounded corners plugin in the project I'm working at the moment. But when I try to round more than one element, IE6 freezes, and I need to kill the proccess. After that, I visited the plugin's examples page, with IE6, and it freezes too. Do you know someth

Re: [jQuery] Sliding menus

2007-01-25 Thread sholby
On 26 janv. 07, at 6:14, Gerry Danen wrote: Looked at the tabbed menus but that's not what I'm looking for. I like a vertical set of menus, that when clicked, shows sub-menus. I've seen it, want it, but can't find it again... :( Hello Gerry, I've implemented something that looks like what you

Re: [jQuery] I broke it - Why is it doing this?

2007-01-25 Thread Ⓙⓐⓚⓔ
$(".button").bind( "click", function(){ }); keeps everything associated with each individual button, throwing in a named function can easily hit some globals! and what is form_dirty? let's see the whole page! On 1/25/07, Stephen Woodbridge <[EMAIL PROTECTED]> wrote: > > I have a

Re: [jQuery] I broke it - Why is it doing this?

2007-01-25 Thread Stephen Woodbridge
Stephen Woodbridge wrote: > I have a bunch of buttons, and use the following to assign click events. > > $(".button").each( function() { > var data = { check_dirty: 1 }; > data.action = $(this).text().toLowerCase(); > if (data.action

[jQuery] I broke it - Why is it doing this?

2007-01-25 Thread Stephen Woodbridge
I have a bunch of buttons, and use the following to assign click events. $(".button").each( function() { var data = { check_dirty: 1 }; data.action = $(this).text().toLowerCase(); if (data.action == 'save') data.check_dirty = 0;

[jQuery] Sliding menus

2007-01-25 Thread Gerry Danen
I like http://www.g-raff.co.uk/jquery/basic.html for its simplicity. I have seen something like it for menus but I can't remember where. Looked at the tabbed menus but that's not what I'm looking for. I like a vertical set of menus, that when clicked, shows sub-menus. I've seen it, want it, but ca

Re: [jQuery] blockUI Weirdness

2007-01-25 Thread Gavin M. Roy
Mike, I decided that I was going to drop the modalContent plugin since this in essence was the same thing, but having it do some stuff automatically, as I had with modalContent, would be pretty nice. What do you think of adding a third bool flag that if set, tells it to calculate the margin and d

Re: [jQuery] New Plugin: jQuery Image Strip

2007-01-25 Thread Jamie Wilkinson
On Jan 15, 2007, at 10:34 AM, Mike Alsup wrote: >> I think it's really well done. Don't let them get you down >> Joshua...great >> job. > > I agree. I think it looks quite nice. +1, great work Joshua Volunteer patches gentlemen!! ___ jQuery mail

[jQuery] Mobile application

2007-01-25 Thread Gerry Danen
I have been asked to put certain database apps online for Blackberry and Windows Mobile devices. These are typically a lookup/edit or table/browse protocol. Some tech questions I need to consider: 1. The OS on these devices is different, will that make a difference on the browsing to an app? 2.

Re: [jQuery] New Plugin: Clone Events

2007-01-25 Thread Brandon Aaron
Right on. I agree and have changed the name of the plugin to copyEvents and added the cloneWithEvents method. Update links: You can find this plugin in SVN: http://jquery.com/dev/svn/trunk/plugins/copyEvents/copyEvents.js?format=txt You can run the unit tests here: http://brandon.jquery.com/plugi

Re: [jQuery] cant append() form objects

2007-01-25 Thread Jeremy Dill
Thanks. That does seem to work when it stands alone. I am having a hard time making it work in my actual environment however. This test is overly simplified to what I actually need. I tried using your method but I am missing something. I am not sure I entirely understand the use of $ in front

Re: [jQuery] blockUI Weirdness

2007-01-25 Thread Mike Alsup
> Marc, you're right - this should be documented! I updated the docs with the following: IMPORTANT NOTE ON STYLES AND POSITIONING: The default styling of the blocking message includes the following: top:50%;left:50%;width:250px;margin:-50px 0 0 -125p

Re: [jQuery] Changing a browser's starting page

2007-01-25 Thread Gerry Danen
Found the key, Dan. Thanks for your help. Gerry On 1/25/07, Gerry Danen <[EMAIL PROTECTED]> wrote: > On 1/25/07, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote: > > Gerry, > > > > >Probably, but that still does not solve my problem... :( > > > > The default homepage for IE is stored in the registr

Re: [jQuery] New Plugin: Clone Events

2007-01-25 Thread John Resig
Ahhh... I see, that's pretty useful. I think I would be inclined to use the following naming convention: - copyEvents - copyEventsTo - cloneWithEvents This way "clone" is always associated with cloning elements. Additionally, adding in the "From" seems sort of redundant (it's not used elsewhere i

Re: [jQuery] blockUI Weirdness

2007-01-25 Thread Mike Alsup
> I found the issue, it seems blockUI is hardcoded to have a width of 250px Hi Gavin, I optimized for what I anticipated to be the most common use case: adding a simple text message. In cases like that any block element will grab as much width as it can which makes it difficult to get the "right

Re: [jQuery] blockUI Weirdness

2007-01-25 Thread Marc Jansen
Gavin M. Roy schrieb: > I found the issue, it seems blockUI is hardcoded to have a width of > 250px and a height of 100px. It seems to me that it should attempt to > get the css attributes of the content being passed in, to based it off > of that. Note that if you override the height and width

Re: [jQuery] New Plugin: Clone Events

2007-01-25 Thread Brandon Aaron
Duh! I'll add the cloneWithEvents() method to the plugin shortly. I was thinking how to make the plugin as flexible as possible and allow for other use-cases instead of just with clone. Lets say for example that you have an unordered list and each list item has events. Then you add some more list i

Re: [jQuery] increasing itemVisible property is not resizing in Firefox

2007-01-25 Thread Jan Sorgalla
Hi, nope, no problems in FF here. I don't have Safari here. As soon as i have the chance to test it with Safari, i'll try to fix that. Jan dvp wrote: > > Hi Jan, > The problem only occurs with dynamically loaded content. > I get the same results in the files you include in your download: > >

Re: [jQuery] blockUI Weirdness

2007-01-25 Thread Gavin M. Roy
I found the issue, it seems blockUI is hardcoded to have a width of 250px and a height of 100px. It seems to me that it should attempt to get the css attributes of the content being passed in, to based it off of that. Note that if you override the height and width in the call, you still have to

[jQuery] blockUI Weirdness

2007-01-25 Thread Gavin M. Roy
I'm trying to use blockUI with a dialog that is 450px high. For some odd reason, which I have yet to track down, instead of centering my dialog like the examples, it is aligning it down to the bottom of the page. Firebug reports that the blockUI div has a top offset of over 200px. Any ideas of w

Re: [jQuery] Dom Updates?

2007-01-25 Thread tmcw
Ah, it was Google Analytics all along. Everything's patched up and improved a bit (added loading indications, some speed enhancements, and hypemachine search) As before, it's at http://rockpolka.workingidea.com/ Daemach wrote: > > Must be, and I hear you :) > > > > tmcw wrote: >> >> Arg. C

Re: [jQuery] New Plugin: Clone Events

2007-01-25 Thread John Resig
I think this is a little different from what was originally asked for. Something along the lines of: jQuery.fn.cloneWithEvents = function( deep ) { var old = this; return this.clone( deep ).cloneEventsFrom( old ); }; This way you can do the cloning (and the event cloning) all in one operation

Re: [jQuery] increasing itemVisible property is not resizing in Firefox

2007-01-25 Thread Jan Sorgalla
Hi, do you have a example page where i can see this happen? Jan dvp wrote: > > I don't know if this is a bug, but when I increase the itemVisible number, > the jcarousel is automatically resized in IE, but not in Firefox. > > After increasing the itemVisble number, in Firefox, the Next butto

Re: [jQuery] simple selector with ID doesn't work anymore

2007-01-25 Thread Karl Swedberg
On Jan 25, 2007, at 5:12 PM, Giuliano Marcangelo wrote: > How about, > > $('#main-content').find('#fourth-para').addClass('test2'); > > that does not throw an exception Absolutely! But, the other is still a bug. Glad to see that Jennifer logged it. That's one of the things about jQuery that mak

Re: [jQuery] Changing a browser's starting page

2007-01-25 Thread Gerry Danen
On 1/25/07, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote: > Gerry, > > >Probably, but that still does not solve my problem... :( > > The default homepage for IE is stored in the registry. Since you have the > many employees, I suspect you have something in place to manage Windows > patches/registry

Re: [jQuery] simple selector with ID doesn't work anymore

2007-01-25 Thread jgrucza
Hooray! So glad it's reproducable. I had previously entered a bug here: http://jquery.com/dev/bugs/bug/881/ Jennifer On Jan 25, 2007, at 4:56 PM, Aaron Heimlich wrote: > The error occurs when the *first* ID selector doesn't exist. See my > test page for an example: Ah, yes! You are correc

Re: [jQuery] simple selector with ID doesn't work anymore

2007-01-25 Thread Giuliano Marcangelo
How about, $('#main-content').find('#fourth-para').addClass('test2'); that does not throw an exception ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] New Plugin: Clone Events

2007-01-25 Thread Brandon Aaron
I've noticed several times on the list people asking why .clone() doesn't clone the events along with the elements. No more worries ... now you can clone those events if you need too! var $elements = $('.elements'); $elements .clone() .cloneEventsFrom($elements); There is also a .cloneEve

Re: [jQuery] simple selector with ID doesn't work anymore

2007-01-25 Thread Karl Swedberg
On Jan 25, 2007, at 4:56 PM, Aaron Heimlich wrote: The error occurs when the *first* ID selector doesn't exist. See my test page for an example: Ah, yes! You are correct! Jennifer, you are not going crazy. ;-) Anyone want to file a bug report? --Karl _ Karl Swedberg www.eng

Re: [jQuery] Why won't this code work?

2007-01-25 Thread Karl Swedberg
Hi Rick, I'm the author of that blog entry. The problem is that you don't close the jquery.js . You need to do that first, and then, if you want your example code to be in the , open another