[jQuery] Re: Flexible jCarousel

2007-04-12 Thread Jan Sorgalla
Hi, On 12 Apr., 21:13, Klaus Hartl <[EMAIL PROTECTED]> wrote: > 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: > >

[jQuery] Re: Autocomplte plugin status

2007-04-12 Thread Klaus Hartl
Jörn Zaefferer schrieb: Klaus Hartl schrieb: 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

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

2007-04-12 Thread John Resig
You have to remember that .find() in < 1.1 is destructive, so anything you do a .find() you're changing the state of 'year', even if you're not assigning back to it. (This was changed for obvious reasons.) Additionally, to get the first item you can just do :first, which is easier, it seems. --

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-12 Thread Aaron Heimlich
On 4/12/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: I've gotten around google trying to autofill the fields by adding them after the page is loaded The only other thing I can think of is: 1. Using the Google Toolbar, find out which fields it takes over 2. Clear the title attributes of the elements o

[jQuery] BlockUI: DOM element removed after first unblock

2007-04-12 Thread Matt Grimm
Mike, I guess I have one other lingering issue with blockUI that I hope you can help with. I have a custom DOM element that I have been using as my blockUI overlay, which I pass like so: $.blockUI( $('#block-message') ); My overlay element is just a div containing a single h1 and an input (type

[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() [...] year

[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>

[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 F

[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 Bosc

[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 unblock

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-12 Thread Aaron Heimlich
I noticed that too, but as long as Validate prefers title attributes above all else, then the only thing you can do to prevent Google Toolbar from messing things up is to give your elements non-blank title attributes. If you want to, you can do this until this issue is resolved: Flip-flop lines

[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 as the container for the error message. That's where GT is pl

[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 PROTECTED]',window.frames["mainFrame"].d

[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) console.log($(mainF

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

2007-04-12 Thread Mike Alsup
I meant jQuery's onreadystatechange fn. I was just wondering if it even gets called when the xhr is aborted. Probably not. It sounds like you'll just have to unblock manually when you do the abort. Mike On 4/12/07, Matt Grimm <[EMAIL PROTECTED]> wrote: Good question. No, ajaxStop isn't bei

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

2007-04-12 Thread Jeffrey Kretz
The jQuery method "click" is used to bind the click event -- it will not fire it. For example: $('a').click() will not fire the click event. $('a').click( function() { /* do stuff */ } ) will bind to the event. $('a')[0].click() will fire the event, because its returning the first element of th

[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. A

[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 m

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

2007-04-12 Thread Matt Grimm
Good question. No, ajaxStop isn't being fired when I call abort. I used this to test: $().ajaxStop( function() { alert('foo!'); } ); The alert appeared normally when I allowed the request to complete, but if I hit cancel (calling the abort method), the block UI overlay stayed and the alert did

[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 ) { v

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

2007-04-12 Thread Brian Cherne
Would it be better if I wrote... $("person.skilled",work).is('.available').job({where: 'san francisco', when: 'asap', type: 'full-time'}) On 4/12/07, Glen Lipka <[EMAIL PROTECTED]> wrote: On 4/12/07, Brian Cherne <[EMAIL PROTECTED]> wrote: > > > Is this a good (appropriate) place to post a job

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

2007-04-12 Thread Mike Alsup
Hi Matt, Is ajaxStop getting invoked when you call abort? What about onreadystatechange, does it get invoked on an abort? Mike On 4/12/07, Matt Grimm <[EMAIL PROTECTED]> wrote: One thing I forgot to add: The block UI overlay *does* go away if I explicitly call $.unblockUI() in the Fireb

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-12 Thread Aaron Heimlich
Well now... Just installed Google Toolbar (GT) in IE and I'm getting now starting to see this issue. It appears that my theory was correct. In IE, GT overwrite's the title attribute of elements it can autofill with the message we've all come to know and love ;) (unless the element already has it

[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: 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 Sen

[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: 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: and I'm still not seeing this issue What browser is this happening in? IE or FF (all of my tests have been in FF)?

[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 m

[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 o

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-12 Thread Rick Faircloth
You may have hit on something here, Aaron. I'm not using the "title" attribute for the inputs, but I am using the "Name" attribute and the same value is used for each input for its ID. Would you recommend changing the Name value or the ID value to something different. Which do you think Googl

[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 www.a

[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] 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: 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... I

[jQuery] Re: jquery form plugin

2007-04-12 Thread Mike Alsup
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 and return html from the server and the target will be updated for you. Mike On 4/12/07, Tom Shafer <[EMAIL

[jQuery] Job Opening - Lead Web Developer @ Fluid

2007-04-12 Thread Brian Cherne
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 this a good (appropriate) place to post a job opening? Are there other lists/places I should

[jQuery] Re: dynamic creation of an button

2007-04-12 Thread Jeffrey Kretz
Now, this is only my opinion, and I'm not an expert by any means. I believe that either of those methods would work. It is possible that there could be some minor performance difference between them. jQuery creates a new element through the jQuery.clean method, which creates a div element, adds

[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: What is the right "find" expression?

2007-04-12 Thread Jeffrey Kretz
The hidden input element below has an id of "stu_1". So you could do this: var id = $('#stu_1').val(); Is this what you wanted? JK -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, April 12, 2007 3:52 PM To: jQuery (Eng

[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: 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 contain

[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 Goog

[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] 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: 'dropzo

[jQuery] Re: Defining of a function

2007-04-12 Thread Olaf Gleba
Am 13.04.2007 um 00:13 schrieb Olaf Gleba: I wondered if there's maybe some speed issue on that topic. But as far as i read about it now, its only a question at which point the function object is available. good resource either: http://developer.mozilla.org/en/docs/ Core_JavaScript_1.5_R

[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. I

[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... $(''); ...instead of... $('').attr({'id':'some-id', 'value': 'yes'}); It works fine, but so many people choose to use the second method. Is there anything wrong with the way I do it? On Apr 12, 10:30 pm,

[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: 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 un

[jQuery] Re: Form Plugin Won't Work in IE

2007-04-12 Thread Diego A.
What you've said should work. Do you have an URL I can look at? On Apr 12, 8:51 pm, "AJ" <[EMAIL PROTECTED]> wrote: > 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

[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(''); }); 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 element cannot contain a block level element like a pa

[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, b

[jQuery] Re: dynamic creation of an button

2007-04-12 Thread spinnach
didn't know that, thanks.. dennis. Jeffrey Kretz wrote: Some of the attributes of a DOM object in IE are read-only. The "type" attribute is one of these and so cannot be assigned to AFTER the element is created. JK -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

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

2007-04-12 Thread Ralf S. Engelschall
On Thu, Apr 12, 2007, Jörn Zaefferer wrote: > Ralf S. Engelschall schrieb: > > 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 > >> s

[jQuery] Re: dynamic creation of an button

2007-04-12 Thread Jeffrey Kretz
Some of the attributes of a DOM object in IE are read-only. The "type" attribute is one of these and so cannot be assigned to AFTER the element is created. JK -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of spinnach Sent: Thursday, April 12, 2007 2:06 P

[jQuery] Re: How to load picture after picture

2007-04-12 Thread Jonathan Sharp
On 4/12/07, wyo <[EMAIL PROTECTED]> wrote: Sorry, was to fast with posting, here are more questions. On Apr 12, 12:25 am, "Jonathan Sharp" <[EMAIL PROTECTED]> wrote: > > You could do that too... here's another option: > > echo ""; > That means only the first is added with PHP? Yep, this is

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

2007-04-12 Thread Jörn Zaefferer
Ralf S. Engelschall schrieb: 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 WebKi

[jQuery] Re: Autocomplte plugin status

2007-04-12 Thread Jörn Zaefferer
Klaus Hartl schrieb: 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/pl

[jQuery] Re: Autocomplte plugin status

2007-04-12 Thread Jörn Zaefferer
Stefan Kilp [sk-software] schrieb: would it be possible, the autocomplete not only works at the end of the input, but also for all input between the separator ",". so i can delete "lin" from "Berlin" an start autocomplete for "ber" again. that would be very helpful if you notice that one of the

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

2007-04-12 Thread Jörn Zaefferer
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 prefer to allow users a

[jQuery] dynamic creation of an button

2007-04-12 Thread spinnach
anybody knows why the following fails in ie, but works ok in firefox? $('').attr({'type': 'button', 'id':'some-id', 'value': 'yes'}) when i remove the type hash attribute, it works: $('').attr({'id':'some-id', 'value': 'yes'}); dennis.

[jQuery] Re: can you do this with JQuery

2007-04-12 Thread Jörn Zaefferer
Klaus Hartl schrieb: Alexandre Plennevaux schrieb: Tweaking jqAccordion should be able to do this I think a while back John prototyped something similiar while they were trying to recreate a mootools menu with jQuery... Yep, Stefan posted an example, too. -- Jörn Zaefferer http://bassist

[jQuery] Re: Interface updates

2007-04-12 Thread Stefan Petre
Priest, James (NIH/NIEHS) [C] wrote: -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. -

[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 wor

[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 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] 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: http://www.fyneworks.com/

[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: 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(window).bind('r

[jQuery] Re: Flexible jCarousel

2007-04-12 Thread Klaus Hartl
Klaus Hartl schrieb: 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

[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_ differ

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

2007-04-12 Thread geezer
heres mine.. http://www.potn.co.uk potn.co.uk lots of polishing and cleaning up to do on the jscript and css , but its up and its working. uses hacked about thickbox, validate, style tabs and lots of other bits and bobs. Simon -- View this message in context: http://www.nabble.com/jQuery-P

[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 even

[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: Tooltip tweak

2007-04-12 Thread Jörn Zaefferer
Scott Sauyet schrieb: (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

[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 > adjus

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

2007-04-12 Thread Brandon Aaron
Just want to add that these methods also work. $(element).css('opacity', '0.5'); $(element).css('opacity', 0.5); $(element).css({opacity: '0.5'}); $(element).css({opacity: 0.5}); -- Brandon Aaron On 4/12/07, Karl Swedberg <[EMAIL PROTECTED]> wrote: On Apr 12, 2007, at 1:09 PM, Jeffrey Kretz

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

2007-04-12 Thread Ⓙⓐⓚⓔ
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. On 4/12/07, Ralf S. Engelschall <[EMAIL PROTECTED]> wrote: On Thu, Apr 12, 2007, Robert Wagner wrote: > jQuery XS AJAX Pl

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

2007-04-12 Thread Karl Swedberg
On Apr 12, 2007, at 1:09 PM, Jeffrey Kretz wrote: I’ve successfully used: $(element).css({opacity:0.5}); On IE6, IE7, FF1.5, FF2.0 and Opera9 (don’t have access to Safari at this time). Same has worked on FF2 and Safari for me. --Karl _ Karl Swedberg www.englishrules.c

[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

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

2007-04-12 Thread Aaron Heimlich
I can also confirm the same results MacOS 10.4.9 (PowerPC) Safari 2.0.4 (419.3) On 4/12/07, Robert Wagner <[EMAIL PROTECTED]> wrote: 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

[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 .jcar

[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" wrote: > In case anybody is interested in it: for a project I'm currently working > on I've today abstracted the

[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]>: O

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

2007-04-12 Thread Jeffrey Kretz
I've successfully used: $(element).css({opacity:0.5}); On IE6, IE7, FF1.5, FF2.0 and Opera9 (don't have access to Safari at this time). JK From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joan Piedra Sent: Thursday, April 12, 2007 7:32 AM To: [EMAIL PROTECTED] Subject:

[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

[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: Che

[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 betw

[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 S

[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 evalu

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

2007-04-12 Thread Ralf S. Engelschall
On Thu, Apr 12, 2007, Karl Swedberg wrote: > This mistake was just in your email, right? > > Have you tried something like this? ... > > $('').attr({'type': 'text/javascript', 'src': url}).appendTo > ('head') > > Not terribly different, but I wonder if the closing makes a > difference. Just shoo

[jQuery] Re: Defining of a function

2007-04-12 Thread 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 until they have been evaluated. So you can do 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- Fro

[jQuery] Defining of a function

2007-04-12 Thread Olaf Gleba
Hi, Maybe i should take a break,- i don't get the point what differences it makes defining a function as a named or a anonymous function. function xxx () { ... } var xxx = function() { ... } What are the advantages and disadvantages of both of them? Thx in advance. -- Olaf Gleba

[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 wo

[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 I'

[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 elemen

[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 follo

[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

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

2007-04-12 Thread Scott Sauyet
You're welcome. Note that something simpler that looks like it should work: $(this).next().prepend($(this).clone().wrap("")); actually won't work because .wrap() needs to get the parent element, and a .clone()'d element doesn't have one. I've been tripped up for hours before on that com

  1   2   >