[jQuery] jqGalViewII plugin beta release

2007-10-02 Thread Benjamin Sterling
Hey guys and gals, With the response that I got with the jqGalView plugin, I figured that I would start releasing the other photogallery plugins I been experimenting with. This is only a beta release, so there may be some inconsistencies, but it has been tested on the major ones on PC and would lo

[jQuery] Re: How to add/remove dynamic blocks of html

2007-10-02 Thread Michael Geary
> > $('#exampleCA').append( [ > > '', > > '', > > '', > > 'I was created by jQuery append', > > '', > > '', > > '' > > ].join('') ); > I do occasionally look at the source code, but I'm still new > enough to JavaS

[jQuery] Re: jQuery.get( uri of CSS resources, callback ) ?

2007-10-02 Thread d . wachss
What are you looking for? Right now, doing $('head').append(''); works just fine for me. If you want to keep a reference to enable/disable it, use: var stylesheet = $('').appendTo('head'); stylesheet.attr('disabled', true); // disables the sheet stylesheet.attr('disabled', false); // enables the

[jQuery] Re: Child elements

2007-10-02 Thread Karl Swedberg
Hi Steve, The first one worked for me when I pasted your HTML into a local document. The second and third don't work because they're referring to classes as IDs. Note that you have #x-dlg-bd to select and #x-dlg-tab to select when they should be .x-dlg-bd and .x-dlg-tab, respectively.

[jQuery] help with vaidation rule

2007-10-02 Thread [EMAIL PROTECTED]
Hi, using regulary the Jorn validation plugin. My problem is allow a field to contain only 8 carachter (only letters or numbers) but no white space. I am really bad with regex. Any Help?? Thanks Andrea

[jQuery] Re: AjaxCFC

2007-10-02 Thread Jack Killpatrick
As far as passing args through the callback/success proces, I usually set a var before the ajaxCFC call and then use it inside the callback: var yadda = 'ya'; and inside the callback: if (yadda == 'ya') Not sure what you mean about scope, though, but maybe you mean something like: $myJqVar

[jQuery] Re: Slide Down with Background Image Causes Problems in IE

2007-10-02 Thread Glen Lipka
I did something similar a while back. http://www.commadot.com/jquery/slideMenu.php Does this help? Glen On 10/2/07, Tom Clancy <[EMAIL PROTECTED]> wrote: > > > In the midst of adding a slide down form to an existing site (http:// > widgetworld.com/tclancy/), I've run into an issue in IE 6/7: whe

[jQuery] Re: having issues with getJSON

2007-10-02 Thread Benjamin Sterling
Wanted to give this a bump to see if anyone has any ideas to the below questions. Thanks. On 10/1/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote: > > Hey all, > I am trying to get my jqAlbumParser plugin updated to work with 1.2.1 and > coming up short when communicating with Picasa. > > Here is

[jQuery] Re: 1.2 bug? $(window).height(); always the same as $('body').height();

2007-10-02 Thread Brandon Aaron
This is fixed in the latest svn. -- Brandon Aaron On 10/2/07, mundizzle <[EMAIL PROTECTED]> wrote: > > > I have a page with content that goes below the fold. > > I'm trying to calculate the height of the browser's viewable area this > way... > > $(window).height(); > > ...but it always returns th

[jQuery] Masked Input Plugin 1.1.1

2007-10-02 Thread Josh Bush
Okay, I had to make a quick fix on this today because I basically broke the plugin for IE. I made the mistake of using $.each() on a string and each character was showing as undefined. Does anyone know if $.each is supposed to work on strings? It seems to work just fine in every other browser e

[jQuery] Re: Clear Input Search Box?

2007-10-02 Thread Leandro Vieira Pinho
How about it: http://leandrovieira.com/archive/jquery-resetdefaultvalue-plugin On Oct 1, 9:38 am, Danjojo <[EMAIL PROTECTED]> wrote: > I am trying to clear an input search box's value. > > When the page loads the value is set. I.e.: > > style="width: 100px;" value="Search term or part #"> > > I

[jQuery] Re: .is() cannot check against the parent chain?

2007-10-02 Thread Matt Kruse
On Oct 2, 6:09 pm, Wizzud <[EMAIL PROTECTED]> wrote: > No, you can't check for parent conditions with is(). You can test descendants > to a certain extent, but not parents. > The same goes for filter() - unless you use filter(function), in which case > you do more or less what you like! > Also, us

[jQuery] Re: Performance feedback

2007-10-02 Thread Peter Bengtsson
Can't you do it in the server side templating language. Bound to be much much faster. On 10/2/07, jojet <[EMAIL PROTECTED]> wrote: > > Hi all, > this is my first message here so apologies if I'm breaking protocol! > > I have posted some code at http://paste2.org/p/7819";> > http://paste2.org/p/78

[jQuery] Re: AjaxCFC

2007-10-02 Thread Josh Nathanson
Can you post your current code, at least the fragment that contains the AjaxCFC call? -- Josh - Original Message - From: Brook Davies To: jquery-en@googlegroups.com Sent: Tuesday, October 02, 2007 1:39 PM Subject: [jQuery] AjaxCFC Can anyone who uses ajaxCFC tell me how t

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Rey Bango
Hey Jack, I just found this on Dzone. 11 Recent Tutorials / Articles at the New Adobe Developer Center http://www.beedigital.net/blog/?p=1417 Rey... Jack Killpatrick wrote: Thanks Rey. Finding out whether the usual jquery $.getJson and such will work from inside the (beta 2) sandbox (or so

[jQuery] Re: : perian.com

2007-10-02 Thread Karl Swedberg
ack! you're right. Thanks for the correction, Charles! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 2, 2007, at 6:26 PM, polyrhythmic wrote: Oops, couldn't follow the link. Looks like it's http://www.perian.org , not .com Charles

[jQuery] Re: Masked Input Plugin 1.1

2007-10-02 Thread Josh Bush
It appears something I've done had totally borked this plugin for IE. I'll figure it out real quick and get a new version out. On Oct 2, 2:26 pm, Flesler <[EMAIL PROTECTED]> wrote: > Your plugin is great, I checked it out some time ago... you know, the > example fails in IE (6, windows). When I f

[jQuery] Re: 1.2 bug? $(window).height(); always the same as $('body').height();

2007-10-02 Thread David Serduke
Hmm my first comment from a half hour ago never showed up. Anyway, there was some discussion on this topic here: http://groups.google.com/group/jquery-dev/browse_thread/thread/1884fa6ed308f40/d44fee44ffb4028f David On Oct 2, 2:33 pm, mundizzle <[EMAIL PROTECTED]> wrote: > I have a page with co

[jQuery] Two possible problems with :eq()

2007-10-02 Thread Pluthos
Hi I found two possible problems with :eq(). (I haven't tried :gt() and :lt() but they may have the same problems) Problem 1. The indexing starts at 0 not at 1 as it should be according to the latest specification. Problem 2. Using :eq(1) anywhere in a chain collapses the whole tree to a single

[jQuery] Re: Slide up/down bug with table data in IE7

2007-10-02 Thread motob
I think its more of an issue of IE not handling table tags properly. I've had some unexpected results when trying to slide table rows in my app. If you're wanting to slide up and down the entire table, try wrapping a around it and slide the . This worked for me when I needed to show and hide enti

[jQuery] Re: Closing a Custom Modal/Dialog Window

2007-10-02 Thread [EMAIL PROTECTED]
Follow up to my original post: I had a typo in the code that I posted here. In the code to close the window it should be: $('#more-events').remove(); instead of: $('.more-events').remove(); I found that I could get it to work if I loaded the code to close the dialog window INSIDE the dialog wind

[jQuery] Re: 1.2 bug? $(window).height(); always the same as $('body').height();

2007-10-02 Thread David Serduke
There was a discussion about this issue on the dev group. http://groups.google.com/group/jquery-dev/browse_thread/thread/01884fa6ed308f40 David On Oct 2, 2:33 pm, mundizzle <[EMAIL PROTECTED]> wrote: > I have a page with content that goes below the fold. > > I'm trying to calculate the height o

[jQuery] Re: Slide up/down bug with table data in IE7

2007-10-02 Thread [EMAIL PROTECTED]
Do you have a sample of the code? On Oct 2, 9:51 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > I have a module which contains a table of information. When I slide the > module (to hide the info) it works just fine. When I slide it back down (to > display the data) the table disappears. > > Is

[jQuery] TableSorter docs suggestion

2007-10-02 Thread sgrover
I'm using the tablesorter plugin (Excellent work! - makes my job MUCH easier). But I found a slight flaw with the documentation. In my case, I wanted alternating row colors. When I set this up manually with something like $("#mytable tr:odd").css("background-color","#ddd"); The initial view

[jQuery] Re: Release: jQuery treeview plugin 1.3

2007-10-02 Thread Guy Fraser
Scott Trudeau wrote: > Nice plugin. I'm hoping to make use of it very soon. I'm having > trouble with the demo (both on bassistance and on jquery docs). > Collapse All / Expand All / Toggle All seems to work, but clicking the > +/- does not. Firebug reports no errors. It renders poorly on

[jQuery] Performance feedback

2007-10-02 Thread jojet
Hi all, this is my first message here so apologies if I'm breaking protocol! I have posted some code at http://paste2.org/p/7819";> http://paste2.org/p/7819 Basically the above code gets executed when the user clicks on a button and its purpose is to refresh a secondary content area which is a

[jQuery] n2menu Mouseout Function

2007-10-02 Thread Seth - TA
Has anyone had any luck implementing a "onmouseout" function with n2menu. I looked at the JS file and saw a function that delt with onmoueout but it obviously does not do what I think it does. What I am trying to describe is when the user mouseovers the menu selection it expands like it does, but

[jQuery] Slide Down with Background Image Causes Problems in IE

2007-10-02 Thread Tom Clancy
In the midst of adding a slide down form to an existing site (http:// widgetworld.com/tclancy/), I've run into an issue in IE 6/7: when you click the "contact us" tab on the top of the screen to start the form process, IE barfs and refuses to move all of the page's elements down like it should. Th

[jQuery] Child elements

2007-10-02 Thread Steve Brownlee
jQuery has finally managed to make me feel stupid. I've been using it a while and never had any problems, until today. What's the proper way to specify the 'acc-ct' div inside NoteModalDialog? So far I've tried... $("#NoteModalDialog").find("#acc-ct") $("#NoteModalDialog #x-dlg-bd #x-dlg-tab #a

[jQuery] Re: jshArea - JavaScript Hacking Area

2007-10-02 Thread jshArea
Yes as bookmarklet. Now, on my old PC with linux, I can't use Firefox o IE. I'm using Opera. I thinking jshArea like un generic hacking method, browsers indipendent. The TAGs method is the best? To load libraries with Ajax? (with jQuery??) (Thanks for your time) On Oct 2, 5:29 pm, polyrhythmic

[jQuery] AjaxCFC

2007-10-02 Thread Brook Davies
Can anyone who uses ajaxCFC tell me how to get a reference to the calling objects scope in the success handler? I can't figure out how to pass arguments through to the callback / success handler. Anyone? FYI, I am using the jQuery version of ajaxCFC. Works awesome BTW. BrookD.

[jQuery] Re: jshArea - JavaScript Hacking Area

2007-10-02 Thread jshArea
Yes as bookmarklet. Now, on my old PC with linux, I can't use Firefox o IE. I'm using Opera. I thinking jshArea like un generic hacking method, browsers indipendent. The TAGs method is the best? To load libraries with Ajax? (with jQuery??) (Thanks for your time) On Oct 2, 5:29 pm, polyrhythmic

[jQuery] Re: jshArea - JavaScript Hacking Area

2007-10-02 Thread jshArea
Yes as bookmarklet. Now, on my old PC with linux, I can't use Firefox o IE. I'm using Opera. I thinking jshArea like un generic hacking method, browsers indipendent. The TAGs method is the best? To load libraries with Ajax? (with jQuery??) (Thanks for your time) On Oct 2, 5:29 pm, polyrhythmic

[jQuery] Re: Masked Input Plugin 1.1

2007-10-02 Thread Flesler
Your plugin is great, I checked it out some time ago... you know, the example fails in IE (6, windows). When I focus an input or type in it, an error pops saying "'res' is not defined". On 2 oct, 15:06, Josh Bush <[EMAIL PROTECTED]> wrote: > I just released version 1.1 of my Masked Input Plugin

[jQuery] Re: What causes the speed bottleneck in Javascript?

2007-10-02 Thread Robert Koberg
On Tue, 2007-10-02 at 11:26 -0500, Derek Gathright wrote: > Thanks for the link, interesting stuff. > > After looking through info on Rhino, I was left with the question... > why build the JS core engine in Java and not a non-interpreted > language? You can compile them to byte code and crea

[jQuery] Re: Masked Input Plugin 1.1

2007-10-02 Thread Guy Fraser
Josh Bush wrote: > I just released version 1.1 of my Masked Input Plugin for jQuery. I > have more features in the pipeline to add to 1.2, but I wanted to get > a few fixes out the door before doing so. The only thing new this time > is an unmask method. > Very nice indeed. However, I found th

[jQuery] Re: Question to experts on jQuery.

2007-10-02 Thread sgrover
Your code as is won't work, unless the image is cached - and even then it'll be hit an miss. The img.src = "1.jpg" line is an asynchronous call. WHILE the image is loading the next line is executed. Seeing as the image probably didn't load in a microsecond or less, the width/height values w

[jQuery] How do I get off this list????

2007-10-02 Thread Travis Johnston
I have removed it from google groups and sent an email to the list asking to be unsubscribed. Please can someone with the "power" remove me from this list. Cheers, Trav.

[jQuery] Re: .is() cannot check against the parent chain?

2007-10-02 Thread Wizzud
No, you can't check for parent conditions with is(). You can test descendants to a certain extent, but not parents. The same goes for filter() - unless you use filter(function), in which case you do more or less what you like! Also, using hierarchical selectors as filters won't work - they're sel

[jQuery] Re: Release: jQuery treeview plugin 1.3

2007-10-02 Thread Scott Trudeau
Jörn, Nice plugin. I'm hoping to make use of it very soon. I'm having trouble with the demo (both on bassistance and on jquery docs). Collapse All / Expand All / Toggle All seems to work, but clicking the +/- does not. Firebug reports no errors. It renders poorly on IE. Tested: FF2/Mac, Safar

[jQuery] Re: 1.2 bug? $(window).height(); always the same as $('body').height();

2007-10-02 Thread mundizzle
here's the thread with the answer. (thanks david) http://groups.google.com/group/jquery-dev/browse_thread/thread/1884fa6ed308f40/d44fee44ffb4028f On Oct 2, 2:33 pm, mundizzle <[EMAIL PROTECTED]> wrote: > I have a page with content that goes below the fold. > > I'm trying to calculate the hei

[jQuery] Release: jQuery treeview plugin 1.3

2007-10-02 Thread Jörn Zaefferer
Good news everyone! The treeview plugin version 1.3 is out, giving you an even better tool at hand to display and navigate your trees. Plugin page(s): http://jquery.com/plugins/project/treeview & http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ Demos: http://jquery.bassistance.de

[jQuery] Re: : perian.com

2007-10-02 Thread polyrhythmic
Oops, couldn't follow the link. Looks like it's http://www.perian.org , not .com Charles

[jQuery] Re: Quick straw pole about maps

2007-10-02 Thread polyrhythmic
+1 Google Maps. Can't speak for Yahoo maps but I've had a really easy time with Google Maps, with or without jQuery. There's tons of good documentation and tutorials, I've even made custom icon markers and search-by-distance without too much trouble. Charles doublerebel.com On Oct 2, 7:52 am

[jQuery] Re: Question to experts on jQuery.

2007-10-02 Thread polyrhythmic
You have to specify the image source, otherwise you are loading nothing. The code should read: var $img0 = $("").load( .. Charles On Oct 2, 9:55 am, BAlex <[EMAIL PROTECTED]> wrote: > Has made: > > var width, height; > var img0 = $("").load(function(){ >

[jQuery] Re: Masked Input Plugin 1.1

2007-10-02 Thread Jörn Zaefferer
Josh Bush schrieb: I just released version 1.1 of my Masked Input Plugin for jQuery. I have more features in the pipeline to add to 1.2, but I wanted to get a few fixes out the door before doing so. The only thing new this time is an unmask method. In addition to code changes, I've made a few m

[jQuery] Re: why is jquery-1.2.1.min.js 45.3KB and not 14KB

2007-10-02 Thread Mike Chabot
I set up gzip IIS for the entire Web site. http://msmvps.com/blogs/omar/archive/2006/08/10/107226.aspx http://www.dotnetjunkies.com/HowTo/16267D49-4C6E-4063-AB12-853761D31E66.dcik http://weblogs.asp.net/owscott/archive/2004/01/12/57916.aspx -Mike Chabot On 10/2/07, Glen Lipka <[EMAIL PROTECTE

[jQuery] Re: A Very Simple tree menu

2007-10-02 Thread Jörn Zaefferer
sgrover schrieb: Invalid nesting of the lists... i.e. Sub 1 Sub 2 Of course, the inner UL should be within the first LI tags... The tree still works with this, but you get little breaks in the lines. It's not valid XHTML though so should be fixed. But it's not something

[jQuery] Re: What plugins are ready for prime time

2007-10-02 Thread Jörn Zaefferer
David Pollak schrieb: lift is a secure, easy, powerful web framework built using the Scala Functional/OO language. See http://liftweb.net Thanks David. I forgot the hint about Scala, that should have helped finding it. Gonna take a look at it. Scala is a very interesting platform, the integ

[jQuery] Re: Can jQuery help?

2007-10-02 Thread Wizzud
I'm not entirely clear what you're asking here. You have a style defined for div#Explanation and you have a div with the id of Explanation - so the style will be applied to the div. I don't see where jQuery comes into it all. However, *if* what you really want is to apply all the properties of t

[jQuery] Re: Can jQuery help?

2007-10-02 Thread Matt Stith
try $("#Explination").addClass("Explination"); On 10/2/07, Johny <[EMAIL PROTECTED]> wrote: > > > Hi, > I have style defined like this > > div#Explanation{position:absolute; top:720px; width:10px; right: > 0px;margin:40px 0 0 0;} > > and my HTML code > > > > > > * > Login size="30"

[jQuery] 1.2 bug? $(window).height(); always the same as $('body').height();

2007-10-02 Thread mundizzle
I have a page with content that goes below the fold. I'm trying to calculate the height of the browser's viewable area this way... $(window).height(); ...but it always returns the height of the whole page (above and below the fold) - the same value as $('body').height(); Is this correct behavi

[jQuery] Re: why is jquery-1.2.1.min.js 45.3KB and not 14KB

2007-10-02 Thread Glen Lipka
Personally, I never understood where to put that script. I ended up doing it another way. 1. Rename the JavaScript files from .js to .php. All of them. (And reference them in my html with php, not js.) 2. At the top of each JS, I put 3. At the bottom of each JS, I put This is a lit

[jQuery] Re: Slightly OT: another way to gzip javscript code

2007-10-02 Thread polyrhythmic
He seems to come to the same common conclusion: It's best to pack or minify your JS and then serve it to the browser through mod_gzip, htaccess controls, or Apache settings. I personally prefer Minify (http://code.google.com/p/minify) + ob_gzhandler in my PHP, so that the JS & CSS is minified an

[jQuery] Slide up/down bug with table data in IE7

2007-10-02 Thread Andy Matthews
I have a module which contains a table of information. When I slide the module (to hide the info) it works just fine. When I slide it back down (to display the data) the table disappears. Is this a bug or a "feature"? Whatever it is, I need a fix for it. Anyone have any ideas? _

[jQuery] Re: why is jquery-1.2.1.min.js 45.3KB and not 14KB

2007-10-02 Thread Andy Matthews
There's a link to gzip instructions right next to the download link for that file. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, October 02, 2007 12:47 PM To: jQuery (English) Subject: [jQuery] Re: why is jquer

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Rey Bango
Yep I sure did. Here's the right link: http://ajaxian.com/archives/a-breath-of-fresh-air-from-adobe Rey Jack Killpatrick wrote: Thanks Rey. Finding out whether the usual jquery $.getJson and such will work from inside the (beta 2) sandbox (or some other way via the sandbox bridge) is my fi

[jQuery] Closing a Custom Modal/Dialog Window

2007-10-02 Thread [EMAIL PROTECTED]
Hello, I am having a head scratcher that maybe someone on this list can help me with. I have a 'more' link that opens a dialog window. Inside the dialog window is a close link to close the dialog window. The close link does not work. Here is the code that opens the dialog window: $('.more-link

[jQuery] Re: Debugging in Safari 2

2007-10-02 Thread Gordon
I did solve the problem eventually but only by commenting out all the code and uncommenting it again one line at a time until I hit the one that was causing the code to fail. Safari 2 just doesn't seem to have any proper debugging tools. On Oct 2, 4:53 am, MichaelEvangelista <[EMAIL PROTECTED]>

[jQuery] $(document).scroll() not functioning in IE?

2007-10-02 Thread Paul Irish
I added some fun infinite scroll functionality to my employer's blog. http://molecularvoices.molecular.com/ All of it is based on a $(document).scroll() event that doesn't seem to fire in IE6 or 7. My alert() debugging shows that IE won't enter into the function attached to the scroll event.. You

[jQuery] Re: A Very Simple tree menu

2007-10-02 Thread sgrover
Invalid nesting of the lists... i.e. Sub 1 Sub 2 Of course, the inner UL should be within the first LI tags... The tree still works with this, but you get little breaks in the lines. It's not valid XHTML though so should be fixed. But it's not something the tree should fi

[jQuery] Re: why is jquery-1.2.1.min.js 45.3KB and not 14KB

2007-10-02 Thread [EMAIL PROTECTED]
Mike, you can tell me please how can i verify if gzip is enabled? Thanks! On Oct 2, 3:49 pm, "Mike Chabot" <[EMAIL PROTECTED]> wrote: > You are probably missing the gzip portion of it. You have to enable > that feature on your Web server to gain the benefits. > > -Mike Chabot > > On 10/1/07, ghet

[jQuery] Re: Question to experts on jQuery.

2007-10-02 Thread BAlex
Has made: var width, height; var img0 = $("").load(function(){ width = $(this).width(); height= $(this).height(); }).attr("src", "1.jpg"); alert("//--> img0=" + img0 + ", w=" + width + ", h=" + height); Has

[jQuery] Re: What causes the speed bottleneck in Javascript?

2007-10-02 Thread Derek Gathright
Thanks for the link, interesting stuff. After looking through info on Rhino, I was left with the question... why build the JS core engine in Java and not a non-interpreted language? Then I looked at info in Spidermonkey (a C re-write for Firefox 3) and saw they realized the same thing. Hopefully

[jQuery] Events: load and unload for $("#a").html(myHtmlString)

2007-10-02 Thread Robert Koberg
Hi, I want to bind events when certain elements are added to the HTML DOM. The elements are assembled as strings and then set with jquery methods like .html(htmlString), .append(htmlString). It looks like this is the job of the jquery load event. I want to unbind events when the elements are rem

[jQuery] $(document).scroll() not functioning in IE?

2007-10-02 Thread Paul Irish
I added some fun infinite scroll functionality to my employer's blog. http://molecularvoices.molecular.com/ All of it is based on a $(document).scroll() event that doesn't seem to fire in IE6 or 7. My alert() debugging shows that IE won't enter into the function attached to the scroll event.. You

[jQuery] Re: Question to experts on jQuery.

2007-10-02 Thread BAlex
552464979 Has made: var width, height; var img0 = $("").load(function(){ width = $(this).width(); height= $(this).height(); }).attr("src", "1.jpg"); alert("//--> img0=" + img0 + ", w=" + width + ", h=" + hei

[jQuery] Re: What plugins are ready for prime time

2007-10-02 Thread David Pollak
lift is a secure, easy, powerful web framework built using the Scala Functional/OO language. See http://liftweb.net On Oct 2, 10:26 am, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > David Pollak schrieb: > > > > > On Oct 1, 12:48 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > > >> David Pollak sc

[jQuery] Re: How to add/remove dynamic blocks of html

2007-10-02 Thread Matt
thank you guys, I really appreciate your comments and insight! On Oct 1, 10:05 pm, howardk <[EMAIL PROTECTED]> wrote: > I do occasionally look at the source code, but I'm still new enough to > JavaScript that sometimes (even with 12 years of Java under my belt, > and a whole slew of other languag

[jQuery] Re: Masked Input Plugin 1.1

2007-10-02 Thread Glen Lipka
I love this plugin. Great improvements. I wish I had it 4 months ago! :) Glen On 10/2/07, Josh Bush <[EMAIL PROTECTED]> wrote: > > > I just released version 1.1 of my Masked Input Plugin for jQuery. I > have more features in the pipeline to add to 1.2, but I wanted to get > a few fixes out the

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Andy Matthews
Thanks Jake. I'll check that out. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jake McGraw Sent: Tuesday, October 02, 2007 12:19 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jquery + adobe air: getting started? A free copy of AIR

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Jack Killpatrick
Thanks Rey. Finding out whether the usual jquery $.getJson and such will work from inside the (beta 2) sandbox (or some other way via the sandbox bridge) is my first task. If someone knows that, it'd save me some experimentation time. I dread the thought of converting code to the AIR native a

[jQuery] [SITE SUBMISSION]: perian.com

2007-10-02 Thread Karl Swedberg
I just went to http://www.perian.com to download the "free, open source QuickTime component that adds native support for many popular video formats" for Mac OS X, and discovered that the site uses jQuery, along with Klaus's Tabs plugin. --Karl _ Karl Swedberg www.englishrul

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Rey Bango
Hi Jack, Before Beta 2 and the new security features, doing that would've been trivial. With the new features, I don't believe you'll be able to just have one codebase for your app since the sandboxes are built in a way that require you to use the built-in APIs to do things like Ajax calls.

[jQuery] Masked Input Plugin 1.1

2007-10-02 Thread Josh Bush
I just released version 1.1 of my Masked Input Plugin for jQuery. I have more features in the pipeline to add to 1.2, but I wanted to get a few fixes out the door before doing so. The only thing new this time is an unmask method. In addition to code changes, I've made a few more enhancements. I'v

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Jack Killpatrick
Thanks Jake, At this risk of getting too off-topic, I don't *think* that will work for my scenario, which is an app that does a lot of jquery ajax stuff with json. In particular, there is a sandbox that some of it will have to live in: http://labs.adobe.com/wiki/index.php/AIR:HTML_Security_

[jQuery] Re: Resize Table Cells

2007-10-02 Thread Glen Lipka
Better example: http://commadot.com/jquery/tableResize.php I want to resize the cells that are silver with the gray borders. Glen On 10/2/07, Glen Lipka <[EMAIL PROTECTED]> wrote: > > Let's say I have a table with 4 cells > > > North-West > North East > > > South West >

[jQuery] Re: A Very Simple tree menu

2007-10-02 Thread Jörn Zaefferer
Gerson Goulart schrieb: Jörn Zaefferer escreveu: Gerson Goulart schrieb: Hi all! I'm not a programmer (and don't speak English), but I'm trying to do both. =D I'm looking for a simple solution to do a simple tree menu like the Windows Explorer during some days. All solutions I find a

[jQuery] Re: jshArea - JavaScript Hacking Area

2007-10-02 Thread polyrhythmic
Phew, do you use that as a bookmarklet? Why not use Firebug or IE Web Developer to get a console? Whatever console you use, loading jQuery is as easy as adding script tags that link to a jQuery library. I know that there's some ScriptMonkey code out there that'll enable jQuery on any page, but

[jQuery] Re: A Very Simple tree menu

2007-10-02 Thread Jörn Zaefferer
sgrover schrieb: So far it's bug free. (other than user caused bugs). What would that be? Good software helps users avoid "bugs"... -- Jörn

[jQuery] Resize Table Cells

2007-10-02 Thread Glen Lipka
Let's say I have a table with 4 cells North-West North East South West SouthEast And the effect I want is to be able to resize the table cells. (Height/Width.) And also possibly resize the entire table. I want to do this with drag and drop. What plugins would I need

[jQuery] Re: Catch a click event before the DOM is loaded

2007-10-02 Thread polyrhythmic
Remy, I like your very simple solution, queuing events to be processed once the DOM is ready. Two questions, though: 1. Why not use "if ($.isReady === true) " ? Were you getting a value for $.isReady besides 'undefined'? 2. Will you run into any problems if a user clicks a button multiple tim

[jQuery] Re: What plugins are ready for prime time

2007-10-02 Thread Jörn Zaefferer
David Pollak schrieb: On Oct 1, 12:48 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: David Pollak schrieb:> although I had to rewrite all the $ references to jQuery so I could fit Scriptaculous, jQuery, and BlockUIin the same browser. Why that? BlockUI uses a handy trick to be able to use

[jQuery] Re: [SITE SUBMISSION] Kuantic.com

2007-10-02 Thread polyrhythmic
Looks clean, but je ne parle pas francais, monseiur. A description would be excellent. What is being used on the backend?? The site is very wide though, too much for my 1024x1280 screen. (I run a vertical screen to make coding easier.) Charles @doublerebel.com On Oct 1, 12:44 pm, "Rick Fair

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Jake McGraw
A free copy of AIR for JavaScript Developers is available here: http://tinyurl.com/23uqqj [ajaxian.com] As jQuery ajax functions work within Safari (Webkit), there should be no major overhauls necessary for your app. Simply generate a static HTML representation of your application and include it

[jQuery] Re: 1.2 and XPath Contains Predicate Selector

2007-10-02 Thread Karl Swedberg
Hi there, In 1.2.x, you would use the CSS equivalent: $("a[id *= smenu]") Or, you could use the Basic XPath plugin. http://jquery.com/plugins/project/xpath Hope that helps, --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 2, 2007, at 11:54

[jQuery] Re: Catfish Advert Plugin

2007-10-02 Thread sozzi
Hmm seems the demos etc don't work. The only place I could find it with a short search was here: http://www.nextbbs.com/trac/nbbs/browser/trunk/helpers/extjs/plugins/jquery.catfish.js?rev=27 And I'm not exactly sure if that is the last version. On Oct 2, 6:12 am, Kia Niskavaara <[EMAIL PROTECTE

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Andy Matthews
If anyone sends you something offlist, please post it back here. I'm also VERY interested in learning this type of development. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jack Killpatrick Sent: Tuesday, October 02, 2007 11:13 AM To: jquery-

[jQuery] .is() cannot check against the parent chain?

2007-10-02 Thread Matt Kruse
It seems that I have a misunderstanding about how .is() worked. Given this html: Test DIV I was expecting this: alert( $('#x').is('div:not(.test) div') ); to return "false". Instead, it returns true. Can I not check for parent conditions in .is()? I see that according to the docs

[jQuery] Re: Why doesn't work in IE ?

2007-10-02 Thread Jack Killpatrick
try: $("[EMAIL PROTECTED]").val(state); - Jack Owca wrote: This line crashes all my jQuery scripts in IE only: $("[EMAIL PROTECTED]").var = state; Part of my code: var state = $("[EMAIL PROTECTED]:checked").val(); $("[EMAIL PROTECTED]").var = state; I want to set value of hidden input na

[jQuery] Re: How to dynamically add a rel="mylink"?

2007-10-02 Thread Benjamin Sterling
Eric, $('a').addClass("myclass").attr('rel','myotherlink'); should do ya. On 10/2/07, Eric <[EMAIL PROTECTED]> wrote: > > > I understand how to add a class to existing href tags, for example > > $("a").addClass("myclass"); > > I would also like to be able to add a 'rel' attribute to the href > tag

[jQuery] How to dynamically add a rel="mylink"?

2007-10-02 Thread Eric
I understand how to add a class to existing href tags, for example $("a").addClass("myclass"); I would also like to be able to add a 'rel' attribute to the href tags, dynamically using jQuery. For example, my html would have existing: The jQuery then adds "myclass" but I also want to add

[jQuery] jQuery.get( uri of CSS resources, callback ) ?

2007-10-02 Thread jldupont
Hi - is there any plans to support the dynamic loading of CSS resources ? Thanks, Jean-Lou Dupont.

[jQuery] Why doesn't work in IE ?

2007-10-02 Thread Owca
This line crashes all my jQuery scripts in IE only: $("[EMAIL PROTECTED]").var = state; Part of my code: var state = $("[EMAIL PROTECTED]:checked").val(); $("[EMAIL PROTECTED]").var = state; I want to set value of hidden input named "breakfast". Please explain me why.

[jQuery] Re: Is this possible with jQuery?

2007-10-02 Thread Loren Pipes
Sure, do something like this: $('#Explanation').css({ position : 'absolute', top : '720px', right : '0px', width : '10px', margin : '40px 0 0 0' }); VP

[jQuery] jquery + adobe air: getting started?

2007-10-02 Thread Jack Killpatrick
Hi All, Anyone know of some blog entries, tutorials, etc (other than the general stuff at Adobe Labs) that might help me get started "migrating" a jquery-based HTML app to the Adobe AIR runtime? I'm looking for jquery-specific tips, examples, etc. My app does a lot of ajax calls that send j

[jQuery] Re: Parse JSON with jQuery and JavaScript (tutorial)

2007-10-02 Thread Giant Jam Sandwich
Hey Karl, Thanks! I will definitely keep that in mind. For some reason I thought learningjquery.com was like a week or two course. Now I see that you are posting ongoing goodness I will be stopping in more often :) Brian On Oct 2, 9:59 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Brian, >

[jQuery] prototype sound

2007-10-02 Thread weepy
Hi I was justing looking at sound for jquery and I came across this from Prototype. I'm no expert - how would you convert this to jquery ? http://trac.wordpress.org/browser/trunk/wp-includes/js/scriptaculous/sound.js?rev=5596 weepy *...(

[jQuery] [ANNOUNCE] Don't forget about jQuery books

2007-10-02 Thread Rey Bango
Guys, whether you're new to jQuery or a seasoned vet, it's always good to have reference material to help you out. So don't forget that there are 3 books available to jQuery developers. The newest book, jQuery in Action by Bear Bibeault and Yehuda Katz, is set to be officially released in De

[jQuery] 1.2 and XPath Contains Predicate Selector

2007-10-02 Thread corpore
..mmh, have a bit of a problem with the XPath Contains Predicate Selector.. Updating code based on jQuery-1.1.3 to jQuery-1.2.1 and changing aforementioned selectors I've found that where something like this used to work: $("[EMAIL PROTECTED] *= smenu]") the, obviously only apparent, equivale

  1   2   >