[jQuery] Masked Input Plugin Direction

2007-10-19 Thread Josh Bush
A lot of people seem to need dynamic width number masking. Where currency symbols, decimal separators, and thousands separators are applied automatically. I'm thinking about taking this on, but I have a few questions. 1.Should is be a part of the masked input plugin or a separate new plugin?

[jQuery] Re: problem with recursive $.get

2007-10-19 Thread Michael Geary
That's good that you found a workaround. I can't help but think there is more to the story than we are seeing here. Maybe another library in your page extending Object.prototype, or some weird thing like that? What does this display if you execute it in your page: for( var name in {one:1} ) con

[jQuery] Re: Changes to $(selector).append

2007-10-19 Thread 胡争辉
Sorry to reply so late. Have you solved this problem? 2007/9/18, Bob Buffone <[EMAIL PROTECTED]>: > > > I totally gave you the wrong URLs > > No issue with IE > http://incubator.apache.org/xap/docs/xmodify/content/jquery-index.html > > issue with IE > > http://incubator.apache.org/xap/docs/xmodify

[jQuery] Re: looking for advice on the best way to do this... autocomplete then fetch more data

2007-10-19 Thread Dan G. Switzer, II
Jim, >I've got an autocomplete field (based on Jörn Zaefferer's plugin) which >works great. > >I'm using it to grab a user from a database. > >What I need to do now is after the user selects their choice from the >dropdown - I need to return to the db and grab more info based on their >choice (ad

[jQuery] iTunes album flipping simulation

2007-10-19 Thread Steve Finkelstein
Greetings all! This might be more UI related, and if it is, apologies for spamming this list. I'm surfing iTunes album art flipping, the same thing that's on the iPhone, and I believe amazon has something very similar (but theirs is done in flash. :-( ) I was curious if any of the brilliant min

[jQuery] Re: problem with recursive $.get

2007-10-19 Thread Jack Killpatrick
I found a workaround, but maybe there's an issue with $.get in jquery 1.1.2 that messes with using it recursively, or some option I could set? I replaced the $.get with this and it worked like a charm: $.ajax({ type: 'GET', url: filePath,

[jQuery] problem with recursive $.get

2007-10-19 Thread Jack Killpatrick
Losing some hair over this one maybe someone can help? I'm using jquery 1.1.2 (and must use that rev). I have a list of html files (snippets of html) that I want to fetch sequentially via a $.get and store in a hash. I'm doing something like this, using while and shift() to loop through t

[jQuery] Re: Getting window portal size in 1.2.1

2007-10-19 Thread Karl Swedberg
Hi Jeffrey, This was a known issue. Something to do with the migration of that piece of Dimensions into core. It's fixed in SVN now. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 19, 2007, at 3:08 PM, Jeffrey Kretz wrote: Using jQuery 1.2.1, I

[jQuery] Re: How would I modify this to...

2007-10-19 Thread Rick Faircloth
You're actually correct, Wizzud... In experimenting with opening and closing a details section I started with trying to manipulate table rows, but the animation would stutter and jerk. I finally got totally smooth animation by using separate tables for each row. Looks exactly the same as a tabl

[jQuery] Getting window portal size in 1.2.1

2007-10-19 Thread Jeffrey Kretz
Using jQuery 1.2.1, I wanted to get the window portal size for use in some layer positioning. I am able to obtain the correct width but NOT the correct height. Here is a sample page: http://www.scorpiontechnology.com/Cobalt/windowtest.htm I've set the window resize event, so you can

[jQuery] Re: How would I modify this to...

2007-10-19 Thread Wizzud
The code you have seems to imply that you're opening/closing tables, not rows. Some html would help, otherwise one has to guess as to the structure. Possibility ... $(this).siblings(':visible:not(.clickable)').slideUp(); On Oct 19, 7:16 pm, "Rick Faircloth" <[EMAIL PROTECTED]> wrote: > .close an

[jQuery] Re: disable effect in images

2007-10-19 Thread Wizzud
The simplest way is to reduce it's opacity ... jQuery('img').css({opacity:0.5}); On Oct 19, 10:31 am, "Alessandro Feijó" <[EMAIL PROTECTED]> wrote: > Its possible to turn any image to gray simulating a disabled effect?? > > I'm trying to find it out but don't know what are the keywords to searc

[jQuery] Re: slideDown problem in IE6 and IE7

2007-10-19 Thread Wizzud
And the code/html would be ? Or a test page maybe? On Oct 19, 10:51 am, chrisandy <[EMAIL PROTECTED]> wrote: > Very new to this but really puzzled by an error in IE6 and IE7. > > I'm using the fx slideDown effect and it is giving me an 'Invalid > Argument' error - Fine in FF and Safari. > >

[jQuery] Re: How to position this div?

2007-10-19 Thread Wizzud
jQuery('#idOfImageToBeClicked').bind('click', function() { jQuery('#newDiv').show(); }); On Oct 19, 10:03 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, > > I have a 16x16 image that will be dragged around the screen as part of > a larger DIV. When someone clicks on the image, I'd like

[jQuery] Re: jQpanels 1.0.1

2007-10-19 Thread [EMAIL PROTECTED]
On 19 Ott, 16:34, Rey Bango <[EMAIL PROTECTED]> wrote: > Hi Andrea. Great work on the plugin. This is such a common bit of > functionality and the plugin is very useful. Here's some feedback. > > 1) In IE, your demo page doesn't seem to render correctly. The header > that says, "Andrea's Blog Sl

[jQuery] The Easy Button

2007-10-19 Thread Glen Lipka
The post is a little demonstration of xPath selections in jQuery. Check the image at the bottom of the post. http://www.bennadel.com/index.cfm?dax=blog:1003.view I asked Ben to upgrade to 1.2. That @ symbol s SOoo last version! Glen

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-19 Thread Chris Jordan
Yaz, View Source will never show you dynamically generated content. Download the FireFox extension: View Source Chart. It's quite handy, and shows you dynamically generated content. It's often helped me to figure out problems where I really need

[jQuery] How to position this div?

2007-10-19 Thread [EMAIL PROTECTED]
Hi, I have a 16x16 image that will be dragged around the screen as part of a larger DIV. When someone clicks on the image, I'd like another DIV (id="newDiv") to appear directly beneath the image. The DIV with id="newDiv" is initially hidden. How do I do this with JQuery? Thanks, - Dave

[jQuery] Re: jQuery Datagrid Plugin v.7

2007-10-19 Thread spills
Awesome job! I was hoping to work on getting a JSON dataset to work with this. Any chance you have looked into this yet? Robb On Oct 3, 5:15 pm, reconstrukt <[EMAIL PROTECTED]> wrote: > Hey all, > > I just released Just finished the initial release of my datagrid > plugin. I named her Ingrid. :

[jQuery] Re: Problem with ajax in jquery.(Unable to figure this out)

2007-10-19 Thread VJ
Thanks a ton. It was a cross domain issue.. regards

[jQuery] $.ready and https

2007-10-19 Thread nick
I get mixed mode popups over https when using the $.ready() function. The line of code that's causing the problem is: if(script)script.onreadystatechange=function(){if(this.readyState! ="complete")return;jQuery.ready(); I think there was a few threads discussing the same problem but nothing came

[jQuery] Re: AJAX and dynamically created dropdowns

2007-10-19 Thread Yaz
With the select plugin I get the same results. Added the form tag. Still no results. Btw, I noticed that even though in Firefox the dropdown does get populated, at view source there is no list of schools Thanks for the suggestion guys. -yaz On Oct 19, 2:31 pm, Jack Killpatrick <[EMAIL PROT

[jQuery] Re: jQuery Logging (to firebug)

2007-10-19 Thread Glen Lipka
I whipped up a demo using it. http://www.commadot.com/jquery/consoleLog.php I probably (definitely) overused it. :) Glen On 10/19/07, Nikola Ivanov <[EMAIL PROTECTED]> wrote: > > > How about integrating it in the core? After if ( console ) of course > >

[jQuery] Re: jQuery Logging (to firebug)

2007-10-19 Thread Nikola Ivanov
How about integrating it in the core? After if ( console ) of course

[jQuery] Re: Ajax/load doesn't load Google Ads?

2007-10-19 Thread Marshall Salinger
I believe Google does that to prevent click fraud. Trans wrote: Hi-- I am using AJAX to load a sidebar into my page: $('#side').load('side.html') It loads fine except for the the Google Ad code that is in side.html: