[jQuery] Re: why this will fail in Safari?

2007-10-28 Thread [EMAIL PROTECTED]
you are correct, this works in Safari, IE, Opera and Firefox, interestingly Firefox failed on this: option id=01 value=NY selected=selectedNew York/option when the options are ajax loaded into the element, thanks for your help, also to all others who responded to me, a difficult part of

[jQuery] Re: how to trigger jCarousel callbacks from the outside..

2007-10-28 Thread Jan Sorgalla
Can you post a link to a sample page with your carousel? Jan On 24 Okt., 17:12, pigeonpoop [EMAIL PROTECTED] wrote: the variable; carousel, the argument passed into bindLoader, is undefined.. would you know what could cause this? FYI.. my carousels are being initialized in the body of the

[jQuery] getting inside attribute?

2007-10-28 Thread [EMAIL PROTECTED]
Hi, Given following, is there a way to get the value of 'display'? is it 'none' or something else? thanks, AC. label for=state style=display:none;

[jQuery] ColdFusion LightBox Gallery

2007-10-28 Thread [EMAIL PROTECTED]
Hi, I have just reduced anotehr great jQuery plugin ( lightbox 0.3 from leandro vieira) to a really easy Coldfusion CTAG. Using that is quite simple and is easy customizable. A demo is a href=http://www.andreacfm.com//examples/ cfJq_lightbox_gallery/here/a Waiting your feedback Andrea

[jQuery] Re: ColdFusion LightBox Gallery

2007-10-28 Thread [EMAIL PROTECTED]
Sorry DEMO URL IS: http://www.andreacfm.com//examples/cfJq_lightbox_gallery/ Andrea On Oct 28, 10:00 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I have just reduced anotehr great jQuery plugin ( lightbox 0.3 from leandro vieira) to a really easy Coldfusion CTAG. Using that is quite

[jQuery] Re: is it possible to call jqModal after the page has loaded?

2007-10-28 Thread vanwil
Hi Adrian. No it's not working. Let me explain what I'm trying to do, maybe you'll spot a flaw. I got these anchors, all having class 'ex2trigger'. So what I do is attach a div modal window, 'ex2', to them on document load like this: $('#ex2').jqm({ajax: '@href', trigger: 'a.ex2trigger'}). And

[jQuery] Consider a standard documentations for plugins

2007-10-28 Thread howa
Now, JQuery has many plugins, this is good. The bad side is different authors has different taste in writing documentation, I think it would be good to have a standard way to write documents, similar the one in the jquery doc., with examples, arguments description etc. It does not mean most

[jQuery] Re: Ok... I give up... why is this message occuring?

2007-10-28 Thread Alexandre Plennevaux
well, the firebug message indicates that the validation.js file is not loaded correctly. Check the path. Also, use the standard $(document).ready(function(){...}); instead of $().ready _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Faircloth Sent:

[jQuery] Re: ColdFusion LightBox Gallery

2007-10-28 Thread Alexandre Plennevaux
nice, although i see the same bug or shortcoming being duplicated with each lightbox transposition: if you scroll the page , your modal window scrolls along with it whereas it should remain in place. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On

[jQuery] Image Box OnClick Problem

2007-10-28 Thread faraz
Hi, I am working on Imagebox jquery pluging.I works on document ready event.But in my script i want it to work on mouseclick Event.I tried to make it work but not successful.Can anyone tell me how can i perform this functionality.In short i want imagebox slideshow onClick event.Your help will do

[jQuery] Imagebox plugin onClick event

2007-10-28 Thread faraz
Hi, I am working on Imagebox jquery plugin.I works on document ready event.But in my script i want it to work on mouseclick Event.I tried to make it work but not successful.Can anyone tell me how can i perform this functionality.In short i want imagebox slideshow onClick event.Your help will do

[jQuery] Re: Extra code for re-instantiating interface:imagebox -- after ajax load methods

2007-10-28 Thread faraz
Hi, I am working on Imagebox jquery plugin.I works on document ready event.But in my script i want it to work on mouseclick Event.I tried to make it work but not successful.Can anyone tell me how can i perform this functionality.In short i want imagebox slideshow onClick event.Your help will do

[jQuery] sending html via POST

2007-10-28 Thread Moody
So here's what I'd like to do: on form submission, send some data from a form input and also a snippet of html to a php script for further processing... so far I have something like: formdata = $('div#htm_snippet'); $('form').submit(function(){ $.post(url, {snippet: formdata},

[jQuery] Re: sending html via POST

2007-10-28 Thread James Dempster
you where nearly there formdata is a jQuery object if you want in html contents of that object try... formdata = $('div#htm_snippet').html(); /James On Oct 28, 10:24 am, Moody [EMAIL PROTECTED] wrote: So here's what I'd like to do: on form submission, send some data from a form input and

[jQuery] Re: Imagebox plugin onClick event

2007-10-28 Thread James Dempster
you can bind an onclick event to an element by selecting the element though jQuery then using .click(function() {}); e.g. $('img.imagebox').click(function() { $('div.large img').attr('href', $(this).attr('href'); }); this would bind a click event to every image with a class name of image box,

[jQuery] Re: getting inside attribute?

2007-10-28 Thread James Dempster
Try $('label').css('display'); this will return the value your looking for. On Oct 28, 7:39 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Given following, is there a way to get the value of 'display'? is it 'none' or something else? thanks, AC. label for=state style=display:none;

[jQuery] Re: ColdFusion LightBox Gallery

2007-10-28 Thread [EMAIL PROTECTED]
Alexander, honestly I do not think this is a bug but a better way to behave of the script. If I open a gallery it means I am interested in it and maybe I also want to set a very low opacity in way that the user can still look at the page in the bottom. BTW i will send this back to the script

[jQuery] thickbox interface z-index

2007-10-28 Thread amircx
hey. im using interface Sortable plugin and thickbox 3. the problem is happeninig when im trying to drag a item inside thickbox item its just putting the sortable item in the back and hides it , because the z-index or somthing how do i slove it? -- View this message in context:

[jQuery] Re: Draggables IE7 problem

2007-10-28 Thread Richard D. Worth
I noticed you're using Interface for draggables and jQuery 1.1.2. Have you tried jQuery UI draggables? It is currently being supported/improved, unlike Interface. More info: http://ui.jquery.com/ http://docs.jquery.com/UI/Draggables If you decide to give it a shot and have questions/issues,

[jQuery] Re: Subscription problems

2007-10-28 Thread Richard D. Worth
Here are the jquery-en mailing list archives I know of: http://groups.google.com/group/jquery-en http://www.mail-archive.com/jquery-en@googlegroups.com/ http://dir.gmane.org/gmane.comp.lang.javascript.jquery http://www.nabble.com/jQuery-General-Discussion-f15494.html - Richard On

[jQuery] Re: getting inside attribute?

2007-10-28 Thread [EMAIL PROTECTED]
Thanks, this works, I notice that css(display) will return block when there is no style defined On Oct 28, 7:13 pm, James Dempster [EMAIL PROTECTED] wrote: Try $('label').css('display'); this will return the value your looking for. On Oct 28, 7:39 am, [EMAIL PROTECTED] [EMAIL PROTECTED]

[jQuery] Re: No click-response after inserting embed-mediaobject with jquery media-plugin

2007-10-28 Thread King Bukkum
Your solution works now... Thank you very much! On 28 okt, 02:40, Mike Alsup [EMAIL PROTECTED] wrote: Hi Mike! Thanks for your answer! Your plugin is great! I have changed the code. But still nothing happens in IE... Any suggestions? On 27 okt, 16:20, Mike Alsup [EMAIL PROTECTED]

[jQuery] Instance embedded media-object keeps playing after new instance is created in jquery media-plugin

2007-10-28 Thread King Bukkum
Hope somebody can help me with this problem: I have 10 links displaying 10 different streams. When clicking on link 1, I want to display stream 1 in div#player-window. When clicking on link 2, I want to display stream 2 in div#player-window. And so on... In Firefox this works well, but in IE

[jQuery] Re: clueTip feedback and suggestions

2007-10-28 Thread [EMAIL PROTECTED]
Many thanks to Karl for an awesome plugin. I've just started using it and am going to most likely standardize to clueTip for popover use across all our websites. Dave, I have to say I'm impressed with your dedication to debugging clueTip ;) On Oct 27, 3:12 pm, DaveG [EMAIL PROTECTED] wrote:

[jQuery] Re: getting inside attribute?

2007-10-28 Thread James Dempster
That's because .css('display') or any other css property returns the computed style. As block is the default style for that element it will return block on spans it will return inline as that's the default display style. /James On 10/28/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks,

[jQuery] Re: Consider a standard documentations for plugins

2007-10-28 Thread Rick Faircloth
A good idea, Howa, however I've been barking up the standardization, consistency, documentation, plug-in-compatibility-with-various-jquery-versions, bring-all-this-together-in-a-standardized-format-in-one-location for months, now. The response I always get is: Core developers and plug-in

[jQuery] Re: Ok... I give up... why is this message occuring?

2007-10-28 Thread Rick Faircloth
Thanks, Alexandre… I had checked the path over and over and tried add “document”, but the same validation without “document” worked well for another form on the site. What I didn’t realize is that in the validation js filename, I had a “_” where it should have been a “.” . How

[jQuery] Re: passing this

2007-10-28 Thread James Dempster
There is already a jQuery .parent() method. Not quite sure what your trying todo. But each method is run in the context of the selected elements. e.g. jQuery.fn.extend({ test: function() { return this.each(function() { // do something with elements }); } });

[jQuery] Re: Consider a standard documentations for plugins

2007-10-28 Thread Benjamin Sterling
I am going to have to disagree with your feelings Rick. There is a ton of work going on to help out with documentation. I believe it is David Serduke that is adding functional examples to each function in the jQuery documentation. Feel free to go to http://groups.google.com/group/jquery-docs

[jQuery] Re: Instance embedded media-object keeps playing after new instance is created in jquery media-plugin

2007-10-28 Thread Mike Alsup
Hope somebody can help me with this problem: I have 10 links displaying 10 different streams. When clicking on link 1, I want to display stream 1 in div#player-window. When clicking on link 2, I want to display stream 2 in div#player-window. And so on... In Firefox this works well, but in

[jQuery] Re: Superfish and IE6 issue

2007-10-28 Thread walterg2
Well, I found the issue this morning. Turned out it was a CSS issue with how I placed the sfHover class. I'll leave the URL active for a little while in case anyone else runs into the same issue. Please be aware, the CSS is pretty heavy, but that's what you get when there's a team of designers

[jQuery] Weird Tabs Question

2007-10-28 Thread Tobias Parent
Hey, all - I've got a strange situation going on with tabs: The first tab in the list needs to be a 'Show All Links' tab (which will display all of the other tabs in one long list). The thing is, using something like this: -=-=-=-=-=-=-=-=-=-=-=-=-=- var tabPanel = jQuery(this);

[jQuery] Bug?: AJAX w/ dataType: 'script' doesn't allow POST's with Opera

2007-10-28 Thread Hiro
I've discovered something of a 'bug'... I have a page which generates a $.ajax() call with type: POST, dataType: 'script', This works great in FF IE, but fails miserably in Opera (I'm using 9.24).. At first I thought jQuery just wasn't able to send POST commands in Opera (jQuery Forms

[jQuery] Re: Weird Tabs Question

2007-10-28 Thread Klaus Hartl
Tobias Parent schrieb: Hey, all - I've got a strange situation going on with tabs: The first tab in the list needs to be a 'Show All Links' tab (which will display all of the other tabs in one long list). The thing is, using something like this: -=-=-=-=-=-=-=-=-=-=-=-=-=- var

[jQuery] BlockUI + Ajax (AjaxForm)

2007-10-28 Thread Gediminas
Hey, i'm using ajaxform to submit form. But before submiting i use a BlockUI plugin to confirm that submition. If user clicks Yes - everything fine, but if he clicks No ar first and then submits form again and presses Yes, then my ajaxSubmit does his submition twice (or more, depending on how

[jQuery] Re: Weird Tabs Question

2007-10-28 Thread Tobias Parent
Klaus Hartl wrote: Tobias Parent schrieb: Hey, all - I've got a strange situation going on with tabs: The first tab in the list needs to be a 'Show All Links' tab (which will display all of the other tabs in one long list). The thing is, using something like this:

[jQuery] Re: Weird Tabs Question

2007-10-28 Thread Karl Swedberg
On Oct 28, 2007, at 5:14 PM, Tobias Parent wrote: Thanks, Klaus - and I really enjoyed your presentation at jQueryCamp '07 yesterday! They were all very informative. I'm on information overload just now! Regards! -Toby P. Hi Toby, Klaus wasn't able to make it to jQueryCamp yesterday.

[jQuery] Re: Weird Tabs Question

2007-10-28 Thread Tobias Parent
Karl Swedberg wrote: On Oct 28, 2007, at 5:14 PM, Tobias Parent wrote: Thanks, Klaus - and I really enjoyed your presentation at jQueryCamp '07 yesterday! They were all very informative. I'm on information overload just now! Regards! -Toby P. Hi Toby, Klaus wasn't able to make it

[jQuery] Re: Consider a standard documentations for plugins

2007-10-28 Thread Rick Faircloth
Hi, Ben. I'm sure there is a lot of work going on to help herd all the cats that I don't know about. I guess that is one of the greatest strengths and greatest weaknesses of jQuery: its growing and thriving community of development entrepreneurs. It's a great strength because there

[jQuery] Re: Consider a standard documentations for plugins

2007-10-28 Thread Yehuda Katz
I'm going to start taking a more active role as the official cat herder (plugin lead). A number of people had ideas at jQueryCamp that were very intersting to me and will drive innovation in this area. Stay tuned! Sent from my iPhone On Oct 28, 2007, at 3:15 PM, Rick Faircloth [EMAIL

[jQuery] Re: Consider a standard documentations for plugins

2007-10-28 Thread Benjamin Sterling
http://youtube.com/watch?v=Pk7yqlTMvp8 Priceless! I have offered to build or help build a CMS for jQuery that would do what I've described above…. I believe the wiki can be used to add documentation for plugins that are not official, but I may be mistaken. It just becomes frustrating when

[jQuery] Re: Bug?: AJAX w/ dataType: 'script' doesn't allow POST's with Opera

2007-10-28 Thread Benjamin Sterling
Hiro, Is there a url we can take a look at? On 10/28/07, Hiro [EMAIL PROTECTED] wrote: I've discovered something of a 'bug'... I have a page which generates a $.ajax() call with type: POST, dataType: 'script', This works great in FF IE, but fails miserably in Opera (I'm using

[jQuery] Re: Consider a standard documentations for plugins

2007-10-28 Thread Rick Faircloth
Ø http://youtube.com/watch?v=Pk7yqlTMvp8 Priceless! Love it! :o) Rick Ø “Sent from my iPhone” Ø Cool! (Hey, Yahuda…How much did you pay for *your* iPhone? Got Ø any money left for groceries? :o) From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[jQuery] Re: passing this

2007-10-28 Thread Jean-Sébastien
sorry, james i didn't see someone answer me. what i want to do is ('div').set_of_plugins.choosen_plugin(). where the first level (set_of_plugins) is kind of container (namespace) of all my plugins. is it possible to do it? On Oct 28, 5:20 pm, James Dempster [EMAIL PROTECTED] wrote: There is

[jQuery] Fixing divs with jquery (adding /div)

2007-10-28 Thread Maurice Kroon
Hi, I've got a friend that bought a booking app a view months back. Now there is something wrong with implementation, because every time a particular (class=select_chalet) div is opened, it won't be closed. So, instead of waiting for the fix repair bill, i wanted to try something else. This is

[jQuery] detailed balloon?

2007-10-28 Thread [EMAIL PROTECTED]
hi, Does jQuery have something similar to this? http://www.netflix.com/BrowseSelection?sgid=307 It pops up a balloon over a image. A.C.

[jQuery] Re: detailed balloon?

2007-10-28 Thread Tobias Parent
[EMAIL PROTECTED] wrote: hi, Does jQuery have something similar to this? http://www.netflix.com/BrowseSelection?sgid=307 It pops up a balloon over a image. A.C. How 'bout this? http://leftlogic.com/lounge/articles/speech-bubbles/ Don't know if it's exactly the same, but it's pretty

[jQuery] Re: detailed balloon?

2007-10-28 Thread Tobias Parent
[EMAIL PROTECTED] wrote: hi, Does jQuery have something similar to this? http://www.netflix.com/BrowseSelection?sgid=307 It pops up a balloon over a image. A.C. Wow - disregard my reply, I was completely off the mark. However, it would be pretty easy to make something like that happen

[jQuery] Re: detailed balloon?

2007-10-28 Thread Benjamin Sterling
There are a few, have a look at http://jquery.com/plugins/project/Plugins/name. clueTip is one, jTip is another and I think there are a few more. On 10/28/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: hi, Does jQuery have something similar to this?

[jQuery] Re: Fixing divs with jquery (adding /div)

2007-10-28 Thread Benjamin Sterling
Maurice, I really would suggest that you get with the booking app developer and have them fix it. This is, assuming you guys made no change to the app, a bug in the app and would/should fall back to them. Did you call them to find out if this is a known issue and if they will send you an updated

[jQuery] Stripped down AJAX methods

2007-10-28 Thread Steve Finkelstein
Hey folks, Before I go through the trouble, I figured someone might have already done this so I'll ask here first. I'm looking to strip jQuery of everything but the AJAX utilities. In particular, jQuery.Ajax() should be good enough. Need this for an application which I can't load the entire

[jQuery] Uploading file in Safari

2007-10-28 Thread [EMAIL PROTECTED]
Hi, It's a common problem when comes to uploading file in Safari, most of time it will failed, is there any solution to this with jQuery's file upload plug ins? A.C.

[jQuery] Re: Consider a standard documentations for plugins

2007-10-28 Thread J rn Zaefferer
The wiki is the place to put up your plugin documentation! It provides a comprehensive format to write documentation for plugins, including API options and examples for those. Examples for more or less unofficial plugins in the wiki: http://docs.jquery.com/Plugins/Calendar

[jQuery] Re: Consider a standard documentations for plugins

2007-10-28 Thread howa
On 10月29日, 上午12時11分, Rick Faircloth [EMAIL PROTECTED] wrote: A good idea, Howa, however I've been barking up the standardization, consistency, documentation, plug-in-compatibility-with-various-jquery-versions, bring-all-this-together-in-a-standardized-format-in-one-location for months,

[jQuery] Re: Fixing divs with jquery (adding /div)

2007-10-28 Thread polyrhythmic
The only way to attempt to accomplish that would be to read the innerHTML, append the /div in text, and rewrite the innerHTML for the select_chalet_content divs. However, since the HTML is improper and the divs are not closed, jQuery could potentially grab anything to *everything* after div

[jQuery] Re: Consider a standard documentations for plugins

2007-10-28 Thread Rick Faircloth
Good points, Howa... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of howa Sent: Sunday, October 28, 2007 10:37 PM To: jQuery (English) Subject: [jQuery] Re: Consider a standard documentations for plugins On 10月29日, 上午12時11分, Rick

[jQuery] Keepaway plugin-for the easily amused

2007-10-28 Thread Danny
I just got one of those gag surveys: Are you happy with your salary? where the No button runs away from the mouse. I figured I could use that on a web page someday so I wrote a simple plugin for it; see http://youngisrael-stl.org/wordpress/blogfiles/keepaway.html If there's any positive feedback

[jQuery] Re: passing this

2007-10-28 Thread Danny
Interesting question. As far as I can tell (playing with things like $ (selector).(namespace.function)() and the like) it is not possible to namespace plugins. Danny On Oct 28, 5:50 pm, Jean-Sébastien [EMAIL PROTECTED] wrote: sorry, james i didn't see someone answer me. what i want to do is