[jQuery] Re: jQuery Powered Sites - More Sites Added.

2007-04-12 Thread Kush Murod
Found pretty big one :) http://www.bbcgoodfood.com/

[jQuery] Re: Autocomplte plugin status

2007-04-12 Thread [EMAIL PROTECTED]
I don't believe using tab to iterate through an auto-complete list would be the expected behavior. In my opinion, an auto-complete list should mirror the behavior of a regular select element, whereby hitting tab would select the currently high-lighted list option and move to the next form

[jQuery] Re: can you do this with JQuery

2007-04-12 Thread Matt Stith
Try searching for Accordian plugin, you might be able to modify that to get what you need. On 4/12/07, Kush Murod [EMAIL PROTECTED] wrote: Hi, Is there a JQuery plugin that can accomplish this sort of behavior http://luddep.se/new/ --Kush

[jQuery] Understanding $(document).ready() etc

2007-04-12 Thread wyo
As I understand $(document).ready() is more or less just an enclosure to make sure the DOM is correcly available for use with jQuery. As it seems this makes the use of any on... event handler obsolete since any event can be bound in the $(document).ready() enclosure. Is that right or is there

[jQuery] Re: Understanding $(document).ready() etc

2007-04-12 Thread Klaus Hartl
wyo schrieb: As I understand $(document).ready() is more or less just an enclosure to make sure the DOM is correcly available for use with jQuery. As it seems this makes the use of any on... event handler obsolete since any event can be bound in the $(document).ready() enclosure. Is that right

[jQuery] Font Sizer Plugin

2007-04-12 Thread codemonkey
Hi made a little plugin that handles resizing the font on a page. Only thing it relies on is that you have fonts set by em on you page or ?20The plugin requires jquery and the cookies plugin.Feedback would be appreciated. On anything. Cheers.To use simply Initialise it like

[jQuery] jQuery's this - a (brief) explanation

2007-04-12 Thread Remy Sharp
Whilst learning jQuery, and whilst teaching other guys I work with, I found I/they kept getting confused as to what 'this' meant. So I wrote up a short tutorial entry trying to explain what jQuery's this meant in different situations. http://remysharp.com/2007/04/12/jquerys-this-demystified/

[jQuery] Font Size Plugin Take 2

2007-04-12 Thread codemonkey
Sorry first one had no spaces. Hi made a little plugin that handles resizing the font on a page. Only thing it relies on is that you have fonts set by em on your page. The plugin requires jquery and the cookies plugin.Feedback would be appreciated. Cheers... To use simply Initialise it like

[jQuery] Re: jQuery Powered Sites - More Sites Added.

2007-04-12 Thread Remy Sharp
There's also: http://www.digitallook.com/ Who are a pretty big UK finance web site. On 10 Apr, 15:33, Rey Bango [EMAIL PROTECTED] wrote: Added: - GameGum Free Flash Games - ToonGum ToonGum is a flash cartoon community. View, submit, and interact with our many flash cartoons and large

[jQuery] Re: Font Size Plugin Take 2

2007-04-12 Thread Stefan Sedich
Yeah the parseint was due to when its passed from a cookie. Thanks for the comments, i was expecting someone to flame me for crap code hehehe. Cheers Stefan p.s. How do i go about getting it added to plugins? On 4/12/07, Joel Birch [EMAIL PROTECTED] wrote: On 12/04/2007, at 7:10 PM,

[jQuery] Re: Font Size Plugin Take 2

2007-04-12 Thread Stefan Sedich
infact could just parse it as an int when i read the cookie initially. Any other additions needed? To return to default you would call SetFontSize(0); might just make a reset method to do.. Cheers Stefan On 4/12/07, Stefan Sedich [EMAIL PROTECTED] wrote: Yeah the parseint was due to when

[jQuery] Re: Check to see if a style exists

2007-04-12 Thread Yansky
You can access all the the CSS rules with the styleSheets cssRules DOM objects. Check these pages for good examples: http://developer.mozilla.org/en/docs/Gecko_DOM_Reference:Examples#Example_4:_Using_Stylesheets http://www.javascriptkit.com/dhtmltutors/externalcss2.shtml

[jQuery] How to clone an element to a sub element within itself ?

2007-04-12 Thread xavier
Hi all, I have a two level list : ul li a href= class=to be copied/a ul li/li ... /ul /li li a href= class=to be copied/a ul li/li ... /ul /li I want to take all the first level a and copy them as the first element in the list: ul li a href=A class=to be

[jQuery] Re: Autocomplte plugin status

2007-04-12 Thread Dan G. Switzer, II
Klaus/Jörn, Jörn, thanks for this. One question: I once modified Dylan's autocomplete a bit, so that if the autocomplete list is shown, tabbing would tab through the list instead of to the next form element. Is it possible to take into account? Have a look here: http://plazes.com/plazes and

[jQuery] Re: Font Size Plugin Take 2

2007-04-12 Thread BKDesign Solutions
This looks great! Needed, is there a demo anywhere for us noobs? Bruce P bkdesign - Original Message - From: codemonkey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 12, 2007 5:10 AM Subject: [jQuery] Font Size Plugin Take 2 Sorry first one had no spaces. Hi

[jQuery] Re: Font Size Plugin Take 2

2007-04-12 Thread Stefan Sedich
Ok its posted under plugins in the userinterface section (see howlong until its remove :( heh). Let me know how it goes. Made a few changes added reset function. Next will remove the need for the cookies plugin and thats it i think. Cheers Stefan On 4/12/07, BKDesign Solutions [EMAIL

[jQuery] Re: .children()

2007-04-12 Thread Mike Alsup
jQuery only selects element node types. It ignores all other types (text, comment, etc). Mike if i have an element like this: liimg .. some text a .../li then FF says that the li has 3 child nodes, but .children() has only 2 (img and a). Is this desirable?

[jQuery] Newbie: validation plug-in radiobutton

2007-04-12 Thread Birgit Pauli-Haack
Hi, I am having a hard time, finding a way to make form work with the validation plug-in. I am missing obviously something very essential and would really appreciate if you could point out the missing pieces. Below is a simple form with one question and radio buttons. The form submits no

[jQuery] Re: jQuery's this - a (brief) explanation

2007-04-12 Thread Karl Swedberg
Well done, Remy! I've been meaning to write something about this, but bigger projects have impeded my progress. Glad to see someone else took the time. Great introduction! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Apr 12, 2007, at 5:05 AM,

[jQuery] Safari and the wrap() method.

2007-04-12 Thread Giant Jam Sandwich
Is the wrap() method supported by Safari 1.3 and above? I've been experiencing some issues trying to get it to work. It works fine in IE and Firefox. I have an image, and I am using wrap() to surround it with an anchor tag. Thanks. Brian

[jQuery] Anyone see anything wrong in this code?

2007-04-12 Thread Rick Faircloth
Good morning, all... I'm trying to implement validation using Jorn's Validation plug-in and every time I click into a form field, then click out, IE 7 locks up. Everything is working fine in FF (except the Submit button, but that's an issue for later...) Does anyone see anything wrong in the

[jQuery] Re: jQuery Powered Sites - More Sites Added.

2007-04-12 Thread Rey Bango
Added Digital Look. Remy Sharp wrote: There's also: http://www.digitallook.com/ Who are a pretty big UK finance web site. On 10 Apr, 15:33, Rey Bango [EMAIL PROTECTED] wrote: Added: - GameGum Free Flash Games - ToonGum ToonGum is a flash cartoon community. View, submit, and interact with

[jQuery] Re: jQuery Powered Sites - More Sites Added.

2007-04-12 Thread Rey Bango
Added BBC News' Good Food site. Kush Murod wrote: Found pretty big one :) http://www.bbcgoodfood.com/ -- BrightLight Development, LLC. 954-775- (o) 954-600-2726 (c) [EMAIL PROTECTED] http://www.iambright.com

[jQuery] Re: Font Size Plugin Take 2

2007-04-12 Thread Joel Birch
On 12/04/2007, at 9:55 PM, Stefan Sedich wrote: Ok its posted under plugins in the userinterface section (see howlong until its remove :( heh). Let me know how it goes. Made a few changes added reset function. Next will remove the need for the cookies plugin and thats it i think. It

[jQuery] Re: Safari and the wrap() method.

2007-04-12 Thread Remy Sharp
Sorry - I should add the test: The JS: $(function() { $('#test').wrap('b/b'); }); Then standard HTML with a P tag with the ID of 'test' and some dummy content within it.

[jQuery] jQuery cross-site AJAX-style loading

2007-04-12 Thread Ralf S. Engelschall
In case anybody is interested in it: for a project I'm currently working on I've today abstracted the script based cross-site AJAX-style loading of code from third-party URLs into a small jQuery plugin jquery.xsajax.js which provides a jQuery.getScriptXS() function which is similar to the

[jQuery] Re: Safari and the wrap() method.

2007-04-12 Thread Giant Jam Sandwich
Thanks Remy for verifying. I was just about to do that, when I discovered what the real issue was - this is one for the old mental database. In Safari, if you have a relatively positioned element with overflow hidden, and you have no width declared, anchor tags will cease to function that follow

[jQuery] Re: Newbie: validation plug-in radiobutton

2007-04-12 Thread Dan G. Switzer, II
Birgit, script src=jquery.js type=text/javascript/script script src=jquery.validate.js type=text/javascript/script You need to use the metadata.js plug-in to read attribute data. Also, by default the Validator plug-in will only look in the class attribute for the validation rules. To

[jQuery] Re: Newbie: validation plug-in radiobutton

2007-04-12 Thread Birgit Pauli-Haack
Thanks Dan, for your fast response! Is there a way to validate forms with radio buttons without an additional file, just with the plug-in file and using the simple example? Birgit On 4/12/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Birgit, script src=jquery.js

[jQuery] Re: Anyone see anything wrong in this code?

2007-04-12 Thread Rick Faircloth
Commenting out the blur line does prevent IE from locking up. (Why doesn't this happen in FF?), but then, of course, no validation occurs. When I change blur to keyup everything seems to work fine. What's up with that? Keyup is fine, but I prefer to allow users a little more time to correct

[jQuery] Re: $(document.createElement(script)) vs. $(script) ?!

2007-04-12 Thread Brandon Aaron
I believe you mean script when you say style. Some tags (like script and link) need to be created using regular DOM methods because the serialization that jQuery uses to get the DOM nodes from a string does not work properly with these types of special tags. There are other issues that also come

[jQuery] Re: Newbie: validation plug-in radiobutton

2007-04-12 Thread Dan G. Switzer, II
Birgit, Thanks Dan, for your fast response! No problem! Is there a way to validate forms with radio buttons without an additional file, just with the plug-in file and using the simple example? I prefer the rules method myself (which requires no additional plug-ins) over the inline

[jQuery] Re: How to clone an element to a sub element within itself ?

2007-04-12 Thread xavier
Thanks Scott and Karl ! Now I got it, I was missing the $(this) trick to get a jquery object from a dom one. I've added it to the wiki (on each and on get sections). Xavier On Apr 12, 4:28 pm, Scott Sauyet [EMAIL PROTECTED] wrote: xavier wrote: I have a two level list : [ ... ] I want

[jQuery] Re: Newbie: validation plug-in radiobutton

2007-04-12 Thread Birgit Pauli-Haack
now I got it working. Thanks. Birgit On 4/12/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Birgit, Thanks Dan, for your fast response! No problem! Is there a way to validate forms with radio buttons without an additional file, just with the plug-in file and using the simple example? I

[jQuery] Re: How to add opacity to an element

2007-04-12 Thread Klaus Hartl
Joan Piedra schrieb: Hey guys, Is there a crossbrowser jquery way to add opacity to an element? I've tried with .css('opacity','0.5') and .animate({opacity:0.5},). Is there some documentation or workaround to achieve this? Regards However I thought the above would work as well, the

[jQuery] Re: How to add opacity to an element

2007-04-12 Thread Brandon Aaron
That should be working just fine. Which browser are you having problems with? Can you post an example of the issue you are having so we can investigate? -- Brandon Aaron On 4/12/07, Joan Piedra [EMAIL PROTECTED] wrote: Hey guys, Is there a crossbrowser jquery way to add opacity to an

[jQuery] Tooltip tweak

2007-04-12 Thread Scott Sauyet
(This is addressed to Jörn, but everyone should please feel free to comment.) Jörn, I know you're probably quite busy with the autocomplete plugin, but if you have a minute, I'd like to suggest a tweak to your tooltip plugin. There is a not-yet documented option called bodyHandler(), which

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-12 Thread Remy Sharp
I did comment on Ralf's web site, but I thought it would be useful to know: The plugin doesn't work in Safari. The reason it doesn't work in Safari is because the script element doesn't fire any events when the external library is loaded, and hence listening for the onreadystatechange doesn't

[jQuery] Re: Defining of a function

2007-04-12 Thread Andy Matthews
I don't know about Javascript, but in Flash, if you use the first method, you can place the function in any location in your code and it can be called from any location in your code. Using the second method, the function definition has to be placed before it's call. -Original Message-

[jQuery] Re: Defining of a function

2007-04-12 Thread Klaus Hartl
Mike Alsup schrieb: The difference between a function declaration and a function expression is when the actual function object gets created. The easiest way to think of it is that function declarations are always available and function expressions are not available until they have been

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-12 Thread Ralf S. Engelschall
On Thu, Apr 12, 2007, Remy Sharp wrote: [...] The reason it doesn't work in Safari is because the script element doesn't fire any events when the external library is loaded, and hence listening for the onreadystatechange doesn't work. [...] I've checked the latest sources from WebKit SVN

[jQuery] Re: Defining of a function

2007-04-12 Thread Andy Matthews
That's a perfect write-up on this issue. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Klaus Hartl Sent: Thursday, April 12, 2007 11:27 AM To: [EMAIL PROTECTED] Subject: [jQuery] Re: Defining of a function Mike Alsup schrieb: The difference

[jQuery] Re: Check to see if a style exists

2007-04-12 Thread Jeffrey Kretz
This page from QuirksMode gives cross-platform compatibility data: http://www.quirksmode.org/dom/w3c_css.html JK -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yansky Sent: Thursday, April 12, 2007 3:18 AM To: jQuery (English) Subject: [jQuery] Re:

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-12 Thread Ralf S. Engelschall
On Thu, Apr 12, 2007, Ralf S. Engelschall wrote: On Thu, Apr 12, 2007, Remy Sharp wrote: [...] The reason it doesn't work in Safari is because the script element doesn't fire any events when the external library is loaded, and hence listening for the onreadystatechange doesn't work.

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-12 Thread Robert Wagner
i see: jQuery XS AJAX Plugin Demo output of script #1: i=14 output of script #2: j=49 1. start sequence 2. end sequence line 2+3 are continuesly counting up after a short display: script x loaded safari 2.0.4 tiger ppc cheers, robert 2007/4/12, Ralf S. Engelschall [EMAIL PROTECTED]: On

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-12 Thread Diego A.
I don't think I'll need to use this any time soon but I have seen a few people trying to do this. So thank you for sharing Ralf On Apr 12, 2:53 pm, Ralf S. Engelschall rse+jquery- [EMAIL PROTECTED] wrote: In case anybody is interested in it: for a project I'm currently working on I've

[jQuery] Flexible jCarousel

2007-04-12 Thread Klaus Hartl
Hi jQuerians! I was wondering if there is a mod for jCarousel out there, that allows it to be flexible? I need the width of the list and its items to be flexible (depending on the browser width). I tried only a bit yet and tinkered with the windows resize event, to adjust the width of

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-12 Thread Ralf S. Engelschall
On Thu, Apr 12, 2007, Robert Wagner wrote: jQuery XS AJAX Plugin Demo output of script #1: i=14 output of script #2: j=49 1. start sequence 2. end sequence line 2+3 are continuesly counting up after a short display: script x loaded safari 2.0.4 tiger ppc Ok, then we have a

[jQuery] Re: Flexible jCarousel

2007-04-12 Thread Jan Sorgalla
Hi Klaus, Hi jQuerians! I was wondering if there is a mod for jCarousel out there, that allows it to be flexible? I need the width of the list and its items to be flexible (depending on the browser width). I tried only a bit yet and tinkered with the windows resize event, to adjust the

[jQuery] Programming Career

2007-04-12 Thread maria
Find Your Programming Job Vacancy and resources here -- http://www.jobbankdata.com/job-programming.htm

[jQuery] Re: Flexible jCarousel

2007-04-12 Thread Klaus Hartl
Jan Sorgalla schrieb: Hi Klaus, Hi jQuerians! I was wondering if there is a mod for jCarousel out there, that allows it to be flexible? I need the width of the list and its items to be flexible (depending on the browser width). I tried only a bit yet and tinkered with the windows resize

[jQuery] Re: jQuery cross-site AJAX-style loading

2007-04-12 Thread Ralf S. Engelschall
On Thu, Apr 12, 2007, wrote: I've found the nightly webkits behave nothing like the latest safari! xml handling is improved other things are broke! Not sure if the current safari source is available. [...] It seems to be even worse: the WebKit SVN trunk is _extremely_ different

[jQuery] Re: Flexible jCarousel

2007-04-12 Thread Klaus Hartl
Klaus Hartl schrieb: Here's what I did - it's a hack and you could do better but it works for now and you get the picture: I added a flexibleWidth option and than added the following lines to the init method: // Mod - allow flexible width if (priv.o.flexibleWidth)

[jQuery] Multiple File Upload Plugin - v1.1

2007-04-12 Thread Diego A.
Blog post: http://fyneworks.blogspot.com/2007/04/jquery-multiple-file-upload-plugin-v11.html Documentation/Download/Demos: http://www.fyneworks.com/jquery/multiple-file-upload/ New features: - Events - File extension validation

[jQuery] Re: General discussion

2007-04-12 Thread Diego A.
I released a new version today, with some of the suggested features. Thread: http://groups.google.com/group/jquery-en/browse_frm/thread/bd44f68a7d3f318 Blog: http://fyneworks.blogspot.com/2007/04/jquery-multiple-file-upload-plugin-v11.html Documentation/download/demos:

[jQuery] Re: Interface updates

2007-04-12 Thread Stefan Petre
Kush Murod wrote: Hi, Just wondering as to when Interface updates/fixes are going to be released. I do release guys could be very busy, but little heads up would be appreciated. --Kush Currently we are working on Interface 2. Stefan

[jQuery] Form Plugin Won't Work in IE

2007-04-12 Thread AJ
I've recently started using the form.js plugin (http://www.malsup.com/ jquery/form/) and I like it a lot. Except, I can't seem to get it working right in IE (6 or 7). Here is my code: /* CODE --- function postloading() { // beforesubmit code goes here

[jQuery] Re: Interface updates

2007-04-12 Thread Priest, James \(NIH/NIEHS\) [C]
-Original Message- From: Stefan Petre [mailto:[EMAIL PROTECTED] Just wondering as to when Interface updates/fixes are going to be released. I do release guys could be very busy, but little heads up would be appreciated. --Kush Currently we are working on Interface

[jQuery] Re: Anyone see anything wrong in this code?

2007-04-12 Thread Klaus Hartl
Jörn Zaefferer schrieb: Rick Faircloth schrieb: Commenting out the blur line does prevent IE from locking up. (Why doesn't this happen in FF?), but then, of course, no validation occurs. When I change blur to keyup everything seems to work fine. What's up with that? Keyup is fine, but I

[jQuery] Re: Safari and the wrap() method.

2007-04-12 Thread Klaus Hartl
Remy Sharp schrieb: Sorry - I should add the test: The JS: $(function() { $('#test').wrap('b/b'); }); Then standard HTML with a P tag with the ID of 'test' and some dummy content within it. This test is not guaranteed to work because a b element cannot contain a block level element like

[jQuery] Re: Defining of a function

2007-04-12 Thread Olaf Gleba
Am 12.04.2007 um 18:16 schrieb Mike Alsup: The difference between a function declaration and a function expression is when the actual function object gets created. The easiest way to think of it is that function declarations are always available and function expressions are not available

[jQuery] jquery form plugin

2007-04-12 Thread Tom Shafer
I am trying to return html after the form has been processed. I get it to work with plain text such as echo '{ message: Thanks }'; but html doesnt seem to want to work. Any thoughts?

[jQuery] Re: dynamic creation of an button

2007-04-12 Thread Diego A.
I didn't know that, but I do have a related question if you don't mind. I prefer to use... $('input type=button id=some-id value=yes'); ...instead of... $('input type=button').attr({'id':'some-id', 'value': 'yes'}); It works fine, but so many people choose to use the second method. Is there

[jQuery] Re: screen flashing with IE

2007-04-12 Thread Diego A.
I don't think there's a fix for that. It's just the way IE handles what's being displayed on the screen. Somebody please correct me if I'm wrong... On Apr 12, 3:16 pm, bleen [EMAIL PROTECTED] wrote: I created a small widget with 4 tabs - rollover the tab and the content below changes. In IE6

[jQuery] What is the right find expression?

2007-04-12 Thread [EMAIL PROTECTED]
Hi, After dragging an object into a Droppable, using this code: $('#classlistcell').Droppable( { accept: 'student', tolerance: 'intersect', activeclass:

[jQuery] Re: Anyone see anything wrong in this code?

2007-04-12 Thread Jörn Zaefferer
Klaus Hartl schrieb: Commenting out the blur line does prevent IE from locking up. (Why doesn't this happen in FF?), but then, of course, no validation occurs. When I change blur to keyup everything seems to work fine. What's up with that? Keyup is fine, but I prefer to allow users a

[jQuery] Google Toolbar Messages Strike Again!

2007-04-12 Thread Rick Faircloth
Hi, all... Well... I went to demo a page containing a form with Jorn's Validation plug-in today and as soon as I caused what should have been an error message to pop up above the form field, I get Google can fill in this form field for you... Aaaah! Has anyone found a way to keep the

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-12 Thread Ⓙⓐⓚⓔ
I've gotten around google trying to autofill the fields by adding them after the page is loaded (via jquery)... not very nice for non-js users but it's the only way I ever got around it! On 4/12/07, Rick Faircloth [EMAIL PROTECTED] wrote: Hi, all... Well... I went to demo a page

[jQuery] Re: jquery form plugin

2007-04-12 Thread Mike Alsup
Do you have the dataType set to 'json' by any chance? Can you post a sample page that shows the problem? Mike On 4/12/07, Tom Shafer [EMAIL PROTECTED] wrote: I am trying to return html after the form has been processed. I get it to work with plain text such as echo '{ message: Thanks }';

[jQuery] Re: jquery form plugin

2007-04-12 Thread Tom Shafer
Yea I am using json. http://dev.unfetteredpress.com/story/Chavez_to_shut_down_opposition_TV click your turn and you can reply, the data is inserted into the database it just wont come back with the html message i wouls like Thanks, -TJ On Apr 12, 7:22 pm, Mike Alsup [EMAIL PROTECTED] wrote:

[jQuery] Re: Job Opening - Lead Web Developer @ Fluid

2007-04-12 Thread Matt Stith
Think they would hire a 16 year old :? On 4/12/07, Brian Cherne [EMAIL PROTECTED] wrote: I've been really enjoying jQuery. When they said a lead web developer position was opening at my company I naturally thought to post it here to see if any jQuery-oriented folk were interested... but... Is

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-12 Thread Aaron Heimlich
By any chance are you using the form element's title attribute to hold error messages? Google Toolbar might be overriding the element's title attribute. That's the only thing I can think of as I've never encountered this before when working with Jorn's Validation plugin (and I *have* the Google

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-12 Thread Rick Faircloth
Are you talking about filling the fields after the page is loaded? If so, that’s not the current problem. For my client, the fields were not being filled… the Google toolbar was simple offering to fill them, and using my error message elements to do so. I need to prevent Google from accessing

[jQuery] selector for ATTR is empty

2007-04-12 Thread Olaf Bosch
Hi All, where i release a Seloctor of all images with not empty ALT, this select all with ALT: $('#content [EMAIL PROTECTED]').each(function(){ i will the function work when ALT not empty Thanks -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de

[jQuery] Re: jquery form plugin

2007-04-12 Thread Tom Shafer
oh, ok cool i did not know that. Thank you. -TJ On Apr 12, 7:46 pm, Mike Alsup [EMAIL PROTECTED] wrote: Tom, The target and dataType options can not be used together. If you must use json then you need to process the response yourself. Otherwise you can just remove the dataType option

[jQuery] Re: Job Opening - Lead Web Developer @ Fluid

2007-04-12 Thread Glen Lipka
On 4/12/07, Brian Cherne [EMAIL PROTECTED] wrote: Is this a good (appropriate) place to post a job opening? Are there other lists/places I should try? Personally, I would think a nice jQuery job posting board or list would be the best place. Seems like job postings or solicitations here

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-12 Thread Aaron Heimlich
On 4/12/07, Rick Faircloth [EMAIL PROTECTED] wrote: I am using the Name attribute and the same value is used for each input for its ID. I'm doing the same thing, i.e: input type=text name=email id=email input type=text name=fullName id=fullName and I'm still not seeing this issue What

[jQuery] Block UI plugin not unblocking on xhr.abort() ?

2007-04-12 Thread Matt Grimm
Mike (or others): I've recently upgraded my jQuery core and block UI code to the most recent versions and have noticed something is not working the way it did before. I'm using the default settings recommended on your web site to block and unblock the UI: $().ajaxStart( $.blockUI ).ajaxStop(

[jQuery] Re: Block UI plugin not unblocking on xhr.abort() ?

2007-04-12 Thread Matt Grimm
One thing I forgot to add: The block UI overlay *does* go away if I explicitly call $.unblockUI() in the Firebug console after the block message gets stuck (from the xhr.abort() call). From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt Grimm

[jQuery] Re: selector for ATTR is empty

2007-04-12 Thread spinnach
you could try something like this (since filter accepts a function): $('#content [EMAIL PROTECTED]').filter( function(index){ return (this.alt this.alt.length 0); } ).each(... dennis. Olaf Bosch wrote: Hi All, where i release a Seloctor of all images with

[jQuery] Re: selector for ATTR is empty

2007-04-12 Thread Olaf Bosch
spinnach schrieb: you could try something like this (since filter accepts a function): $('#content [EMAIL PROTECTED]').filter( function(index){ return (this.alt this.alt.length 0); } ).each(... i have now this: // Removes leading whitespaces function trim( value ) { var

[jQuery] How do I trigger the click event on a button in another frame?

2007-04-12 Thread Daemach
This started out as just a quick hack until I can redo the mechanism correctly, and now I just want to know how it works. $(window) has no properties, so $(window.frames[1].document) has no properties. Oddly, window.frames[1].document in firebug pulls the correct document. I've been trying to

[jQuery] Re: Autocomplete Question

2007-04-12 Thread Jeff Fleitz
Hi Dan, guess I'll jump in real quick while the iron is hot. I too am a noob to jQuery and Ajax stuff in general. I borrowed your autocomplete example (and downloaded your recent presentation to check out the other stuff), and I have it working great, including passing the hidden id value, etc.

[jQuery] Re: How do I trigger the click event on a button in another frame?

2007-04-12 Thread Daemach
Actually, click with no arguments does trigger the event. I'm not sure what you mean by different contexts - they are loaded from the same site. Another interesting thing is that if I do: var mainFrame = parent.frames[mainFrame].document; (from inside of one of the frames)

[jQuery] Re: How do I trigger the click event on a button in another frame?

2007-04-12 Thread Jeffrey Kretz
Well I'll be durned. I wonder if that's a change from earlier versions or if I just missed it originally. If both frames are from the same site, I don't know if a reason why that should fail. Does this return the DOM element in question? $('input:[EMAIL

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-12 Thread Rick Faircloth
I realized after I posted that what is being replaced on the page is not the content of the input element, but rather the cell which has been identified in the plug-in as the container for the error message. In other words, I'm using td id=Name_error/td as the container for the error message.

[jQuery] Re: Block UI plugin not unblocking on xhr.abort() ?

2007-04-12 Thread Matt Grimm
Thank you Mike, that works nicely enough. Appreciate the quick response, as always. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Thursday, April 12, 2007 5:38 PM To: [EMAIL PROTECTED] Subject: [jQuery] Re: Block UI plugin not

[jQuery] Re: selector for ATTR is empty

2007-04-12 Thread Brandon Aaron
jQuery provides a trim method already and you can use it like this: var myString = test ; var myNewString = $.trim(myString); myNewString now holds: test Here are the docs for the method. http://docs.jquery.com/JavaScript#.24.trim.28_str_.29 -- Brandon Aaron On 4/12/07, Olaf Bosch

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-12 Thread Rick Faircloth
Flip-flopping the two lines worked perfectly. I wonder why the plug-in isn't written that way to start with? It seems to be the preferred method in the examples. (Jorn?) I'll just have to remember to change those two lines in the validation plug-in every time a new version is used. Rick

[jQuery] How to use jdMenu in frameset?

2007-04-12 Thread weide
I download bete2 at http://jdsharp.us/code/jQuery/plugins/jdMenu/1.3.beta2/ When I do some work I find it is be closed over by the frame left or main. Is jdMenu could be used in frameset? and How to use in in this instance frameset rows=130,* cols=* frameborder=NO border=0 framespacing=0

[jQuery] .find() works in 1.1.2 but not 1.0.4?

2007-04-12 Thread m3avrck
Hey guys... so I'm working on a new jCalendar plugin (an inline calendar, verse a popup one, used both for input dates and displaying a calendar) and I have one issue I just can't figure out: var year = $(this).find('select.jcalendar-select-year'); [...] year.find('option:eq(1)').val() [...]