Re: [jQuery] Unable to chain Find with multiple classes

2007-02-22 Thread Kenneth
Yes nice explanation, thank you. On 2/20/07, Jonathan Chaffer [EMAIL PROTECTED] wrote: On Feb 20, 2007, at 13:21 , Jake McGraw wrote: Thanks Blair, that works, here I was thinking filter() filtered out all matched elements, I must be getting dyslexia. But that still doesn't answer why find()

Re: [jQuery] Big problem with FF2, flickering on all animate effect

2007-02-22 Thread Sanyi
I already use 1.1.1 jQuery. I had to correct myself, I was very tired yesterday in the evening. (at least) All the steps below are animated with the interface.js of Stefan Petre and Paul Bakaus. The still exists, so I know well that I not really undestand this flickering problem. More detailed

Re: [jQuery] jqUploader: flash-based file upload

2007-02-22 Thread Peter De Berdt
On 2/22/07, Chris Domigan [EMAIL PROTECTED] wrote: This is awesome! Didn't know you could use flash to do that :) SWFUpload (http://swfupload.mammon.se/) can do similar things, but only uses Flash to do the actual filtering/selection/uploading of the file, you can handle the look and upload

Re: [jQuery] $.cookie expires problem...Help!

2007-02-22 Thread Clodelio C. Delfino
Thanks Klaus for the reply...i did notice the diff cookie name..arg, my fault.Anyway, your cookie plugin helps a lot...Cheers. Regards, cdelfino On 2/22/07, Klaus Hartl [EMAIL PROTECTED] wrote: Clodelio C. Delfino schrieb: Hi All, $.cookie('my_cookie','',{expires: -1}) doesn't seem to

Re: [jQuery] jQuery Powered Sites - Keep the Links Coming

2007-02-22 Thread Michael E. Carluen
Rey, Please ad http://www.jingleads.com http://www.jingleads.com/ to your list My client had some specific requirements and objectives for his audio products/service: - Make the visitor hear his MP3 audio snippets - Make the visitor make a phone call- not browse around

Re: [jQuery] Big problem with FF2, flickering on all animate effect

2007-02-22 Thread Seb Duggan
On 22 Feb 2007, at 08:46, Sanyi wrote: I already use 1.1.1 jQuery. Brandon's point was that it has been fixed SINCE the 1.1.1 release. (1.1.1 was still broken - I had the same problem). I updated to the latest nightly build, and it works perfectly!

[jQuery] BlockUI like plugin for divs

2007-02-22 Thread Harald Dietrich
Hi, I am looking for something like the blockUI plugin, but only for parts of a website - a div element. Could someone tell me if this is possible and how to achieve this? Thanks, Harald ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Big problem with FF2, flickering on all animate effect

2007-02-22 Thread Sanyi
Thx Seb, I will download the nightly build and try it Have a nice day Alex (Sanyi) On 2/22/07, Seb Duggan [EMAIL PROTECTED] wrote: On 22 Feb 2007, at 08:46, Sanyi wrote: I already use 1.1.1 jQuery. Brandon's point was that it has been fixed SINCE the 1.1.1 release. (1.1.1was still broken

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Klaus Hartl
Harald Dietrich schrieb: Hi, I am looking for something like the blockUI plugin, but only for parts of a website - a div element. Could someone tell me if this is possible and how to achieve this? Thanks, Harald Harald, I think something like that should work:

[jQuery] PNGs in IE

2007-02-22 Thread schnuck
anyone knows of a jquery plugin that fixes PNG transparency in IE 5.5, 6? or any ideas please? tia, s -- View this message in context: http://www.nabble.com/PNGs-in-IE-tf3272202.html#a9098109 Sent from the JQuery mailing list archive at Nabble.com.

Re: [jQuery] PNGs in IE

2007-02-22 Thread Chris Domigan
One option: http://www.stilbuero.de/2006/03/15/png-alpha-transparency-fast-and-easy/ Chris ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] PNGs in IE

2007-02-22 Thread Klaus Hartl
schnuck schrieb: anyone knows of a jquery plugin that fixes PNG transparency in IE 5.5, 6? or any ideas please? tia, s It's not jQuery, but a CSS pure solution I made (well, it relies on Dynamic Properties, e.g. JavaScript, but you put it into a style sheet):

Re: [jQuery] PNGs in IE

2007-02-22 Thread Allan Mullan
I just so happened to write one tonight :-) Not completely finished (any improvements let me know, especially about the $(this) parts) but here it is: (function($) { $.fn.fixPNG = function() { if($.browser.msie) { var agent =

Re: [jQuery] PNGs in IE

2007-02-22 Thread Bob den Otter
schnuck schreef: anyone knows of a jquery plugin that fixes PNG transparency in IE 5.5, 6? or any ideas please? It's not a plugin, but i use this: $(document).ready(function(){ if (navigator.platform == Win32 navigator.appName == Microsoft Internet Explorer) { fnLoadPngs();

[jQuery] input losses styles after append()

2007-02-22 Thread triggsley
Hi All Great forum, very helpfull. I've a simple problem whereby I have a form which highlights all form tags on focus() - no problem here, the problem occurs when a user clicks on the add new link to clone the first row and append it to the last spot in the table, this works really well

Re: [jQuery] PNGs in IE

2007-02-22 Thread Sam Collett
On 22/02/07, schnuck [EMAIL PROTECTED] wrote: anyone knows of a jquery plugin that fixes PNG transparency in IE 5.5, 6? or any ideas please? tia, s -- There is a plugin here: http://nemoweb.com.au/jquery/IEPNGHack/take3.html ___ jQuery mailing

Re: [jQuery] input losses styles after append()

2007-02-22 Thread Choan C. Gálvez
On 2/22/07, triggsley [EMAIL PROTECTED] wrote: Hi All Great forum, very helpfull. I've a simple problem whereby I have a form which highlights all form tags on focus() - no problem here, the problem occurs when a user clicks on the add new link to clone the first row and append it to the

Re: [jQuery] PNGs in IE

2007-02-22 Thread schnuck
thanks to all who replied that quickly. a combination of 2 techniques finally (!) solved my problem (though css only solutions). however any news on a nice plugin that makes life even easier, please keep us posted. the below might be not optimal, but it fixes background images as well as inline

[jQuery] Newbie, xml issue

2007-02-22 Thread Trav Johnston
Hi everyone, I am very new to jquery but I am loving it! Im having an issue returning and parsing XML ajax response. JS: $(document).ready(function() { $.ajax({ url: test_xml.php, success: function(xml) { alert($(average, xml).text()); } }); }); PHP: echo

Re: [jQuery] Newbie, xml issue

2007-02-22 Thread Klaus Hartl
Trav Johnston schrieb: Hi everyone, I am very new to jquery but I am loving it! Im having an issue returning and parsing XML ajax response. JS: $(document).ready(function() { $.ajax({ url: test_xml.php, success: function(xml) { alert($(average, xml).text());

Re: [jQuery] PNGs in IE

2007-02-22 Thread Janet Weber
HI There are 2 plugins that fix this problem. Just search the Joomla extensions for them. Janet - Original Message - From: schnuck [EMAIL PROTECTED] To: discuss@jquery.com Sent: Thursday, February 22, 2007 6:19 AM Subject: [jQuery] PNGs in IE anyone knows of a jquery plugin that

[jQuery] tabs and onClick callback function

2007-02-22 Thread matt2012
I want to use the clicked, toHide and toShow variables attached to the onClick callback function but I don't know how to access them my code below fails as variables are undefined. $('#container-1').tabs(2, {onClick: function(){alert(clicked+toHide+toShow);}, Matt. -- View

[jQuery] Does there a way to set element position like [myContextEl, tr, tl]

2007-02-22 Thread Microtoby
Hi, Guys, In yui library, there is a good way to set overlay's position: // This call says that myOverlay's top right corner should be snapped to myContextEl's top left corner. myOverlay.cfg.setProperty(context, [myContextEl, tr, tl]); // To change the alignment later, you can also call

Re: [jQuery] tabs and onClick callback function

2007-02-22 Thread matt2012
I wasn't passing in the variables! I also should have looked better at whats already here :) $('#container-1').tabs(3, {onClick: function(clickedTabLink, contentDivOfClickedTab, contentDivOfHiddenTab){alert(clickedTabLink+' '+contentDivOfClickedTab.id+' '+

[jQuery] Release: jQueryHelp - code reference application

2007-02-22 Thread Sean O
Hi guys, Today I'm releasing jQueryHelp - a small code reference application for Windows. Just download and run, no install required. To gain insight on any jQuery function, simply highlight (or just place the cursor inside!) it and hit Ctrl-Shift-J to look up on Jörn's API Browser. It's IDE

[jQuery] appending text nodes

2007-02-22 Thread dalvarado
Hi, I want to append text to a node. I'm using this code $(this).parents(div.sidebarToDo).find(td.sidebarText).empty().append(val); but if the variable val contains special characters, like td, that will mess up the rest of my tree. What is the best way to handle this? Thanks, - Dave

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Christopher Jordan
---[Hopefully this will start a new thread for this topic]--- I'd like to be able to do this sort of thing too. To block just a particular div to indicate that something is happening in regards to *just* that area of the screen, and that the user can continue to work in other areas of the

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Mike Alsup
I'd like to be able to do this sort of thing too. To block just a particular div to indicate that something is happening in regards to *just* that area of the screen, and that the user can continue to work in other I'm going to add this functionality to blockUI since several people have

Re: [jQuery] appending text nodes

2007-02-22 Thread Kristinn Sigmundsson
Hm, you empty it and then append to it? wouldn't that be the same as using .html(val)? If that is what you'd want to do, try the .text() command: $(this).parents(div.sidebarToDo).find(td.sidebarText).text(val) contents of td.sidebarText will be replaced with val On 2/22/07, [EMAIL PROTECTED]

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Olaf Bosch
Mike Alsup schrieb: I'm going to add this functionality to blockUI since several people have requested it. I'll post a note when it's ready (probably tonight). This tones good, when you are here ;) a short simple question, give a way for add blockUI to the page when begin to load. Say we

Re: [jQuery] appending text nodes

2007-02-22 Thread dalvarado
---Original Message--- From: Kristinn Sigmundsson [EMAIL PROTECTED] Subject: Re: [jQuery] appending text nodes Sent: Feb 22 '07 15:42 Hm, you empty it and then append to it? wouldn't that be the same as using .html(val)? If that is what you'd want to do, try the .text()

Re: [jQuery] appending text nodes

2007-02-22 Thread Karl Swedberg
Hi Dave, Not sure where the item variable is coming from, but you can try setting the variable first with .text() and then just including that variable name in the append string. Something like this: var item = $('your-selector-goes-here').text(); And then, instead of $.text(item) in the

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Mike Alsup
a short simple question, give a way for add blockUI to the page when begin to load. Say we have over 20 great images to load, then the images are in the BrowserCache/onPage, all content are On, then unblockUI? understand this? Not really. Are you looking for something different than this?

Re: [jQuery] appending text nodes

2007-02-22 Thread Dave Treagust
Hi You could try this, but I'm not too sure if this is the correct way to do it var x = $.text(item) $(this).parents("div.sidebarToDo").find("td.sidebarText").empty().append("input type=\"text\" size=\"10\" class=\"editableTDItem\" value=\"" + x + "\""); Hope this helps. Triggsley

Re: [jQuery] appending text nodes

2007-02-22 Thread Kristinn Sigmundsson
why it doesn't work would probably because of this from the jquery src: text: function(e) { if ( typeof e == string ) return this.empty().append( document.createTextNode( e ) ); . . as you havn't provided

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Harald Dietrich
You're great!!! Thanks ;-) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mike Alsup Sent: Donnerstag, 22. Februar 2007 16:34 To: jQuery Discussion. Subject: Re: [jQuery] BlockUI like plugin for divs I'd like to be able to do this sort of thing

Re: [jQuery] appending text nodes

2007-02-22 Thread dalvarado
Thanks. I incorporated your suggestion ... this is where item was coming from var item = $(this).parents(div.sidebarToDo).find(td.sidebarText).text(); Things work great. - Dave ---Original Message--- From: Karl Swedberg [EMAIL PROTECTED] Subject: Re: [jQuery] appending text

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Olaf Bosch
Mike Alsup schrieb: understand this? Not really. Are you looking for something different than this? $(document).ready($.blockUI); $(window).load($.unblockUI); Thank you, you understand right. -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de

[jQuery] Reference to the last DIV in a group?

2007-02-22 Thread dalvarado
Hello, I have a main div, with id= todoList, and within it, a number of DIVs, all with classes sidebarToDo. Let's say I have just added a DIV to the DOM ... $('#todoList').append('div class=sidebarToDo width=100%Hello/div'); How do I now get a reference to this last DIV with class

Re: [jQuery] Does there a way to set element position like [myContextEl, tr, tl]

2007-02-22 Thread Glen Lipka
Not in the base, but you might want to use the dimensions plugin. Look at this sample page: http://brandon.jquery.com/plugins/dimensions/test/offset.html There are a few rounded corner plugins as well which find those spots. http://docs.jquery.com/Plugins When you say overlay do you mean like a

Re: [jQuery] Reference to the last DIV in a group?

2007-02-22 Thread Karl Swedberg
Try this: $('div.sidebarToDo:last') --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 22, 2007, at 12:07 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, I have a main div, with id= todoList, and within it, a number of DIVs, all with

Re: [jQuery] Gmail-style updates

2007-02-22 Thread Daemach
OK I played around with this for a while with a fresh head. As I understand it, the main power of closures is that they retain the environment in which they were created. I'm not sure how that applies here, since closures have to be defined inside of another function then returned to retain

[jQuery] Collapsible Tables

2007-02-22 Thread Carl Parrish
What I'm trying to do. When a thead is clicked I'd like for the tbody row group below it to become visable. So I have a table like this table thead class=rowGroupthFirst row group/th/thead tbody class=hidden trtd1st Item in row group 1/td/tr trtd2nd Item in row group 1/td/tr /tbody thead

Re: [jQuery] Collapsible Tables

2007-02-22 Thread Jake McGraw
Someone else asked this yesterday, and here is a possible solution: http://www.monkeypuzzle.net/testfiles/jquery/Accordion_table/index_2.html You may want to search the listserv in the future, you can get your answer faster that way. - jake On 2/22/07, Carl Parrish [EMAIL PROTECTED] wrote:

Re: [jQuery] Collapsible Tables

2007-02-22 Thread Carl Parrish
Thanks Jake, I did do a quick browse of the RSS feed but you're right I should have done a search. On 2/22/07, Jake McGraw [EMAIL PROTECTED] wrote: Someone else asked this yesterday, and here is a possible solution: http://www.monkeypuzzle.net/testfiles/jquery/Accordion_table/index_2.html

Re: [jQuery] jqUploader: flash-based file upload

2007-02-22 Thread RhythmFighter
I'm attempting to use this, but having some probs accessing the file that is uploaded via php. How is the uploaded file sent to the specified uploadScript? Accessing the php $_FILES doesn't seem to give me anything. If I dump out my post in the afterScript I get things such as: [allFiles] =

Re: [jQuery] Collapsible Tables

2007-02-22 Thread rolfsf
Carl - Jake is pointing you to the example I worked out a couple days ago - I faced the same problem, and despite being quite a newbie I was able to figure out a solution. I highly recommend making use of either Jörn's jquery API or the Visual jQuery site. r. Jake McGraw wrote: Someone

Re: [jQuery] jqUploader: flash-based file upload

2007-02-22 Thread Chris Domigan
Have a look in the sample php file provided with the plugin - that helped me. Chris ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jqUploader: flash-based file upload

2007-02-22 Thread RhythmFighter
opps... didn't notice that file there. Just what I was looking for. Thanks for pointing that out. Chris Domigan wrote: Have a look in the sample php file provided with the plugin - that helped me. Chris -- View this message in context:

Re: [jQuery] Problem with interface Droppables

2007-02-22 Thread bander
Erik Beeson wrote: FYI, Droppables don't play nicely with fixed positioning. Scroll offset is added to the position of the Droppable, which is wrong in the case of its position being fixed. This throws off the hover calculation. I've just run into this too. I'll submit a bug report. --

Re: [jQuery] Reference to the last DIV in a group?

2007-02-22 Thread Chris Domigan
The beautiful terseness makes me cry. Chris ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Flickering problem with Interface Slide in FF2

2007-02-22 Thread Jim Nimblett
Hi everyone, I am trying to get an image to slide out and then back in again. Eventually, I will be displaying a new image with each rotation of the slider. Unfortunately, there seems to be an issue in Firefox 2 were the image is briefly displayed before it slides back in. This shows up as a

Re: [jQuery] Release: jQueryHelp - code reference application

2007-02-22 Thread Sean O
John, Thanks for the kind words. Attaboys right back at you for the collaboration w/Jack Ext. I hope you can better jQuerize those lovely-to-use, but byzantine-to-code Ext libraries! SEAN O John Resig wrote: Very nice! Great job Sean! --John On 2/22/07, Sean O [EMAIL

Re: [jQuery] Reference to the last DIV in a group?

2007-02-22 Thread Andy Matthews
Indeed...efficiency is ranked near the tippy-top in my book. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Domigan Sent: Thursday, February 22, 2007 1:27 PM To: jQuery Discussion. Subject: Re: [jQuery] Reference to the last DIV in a group? The beautiful

[jQuery] Dynamicly adding tabs?

2007-02-22 Thread Mikael Noone
Hi there, Is it perhaps possible to add tabs to the tab plugin dynamicly? If so, that would be a really usefull feature. What do you think? aint it a good idea? /Mikael. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Gmail-style updates

2007-02-22 Thread Blair Mitchelmore
Could I maybe see the code? It's hard to customize something to a situation I nothing about. -blair Daemach wrote: OK I played around with this for a while with a fresh head. As I understand it, the main power of closures is that they retain the environment in which they were created. I'm

Re: [jQuery] How to add event handler to XMLHttpRequest.onreadystatechange?

2007-02-22 Thread George Adamson
Thanks for the code Klaus. Nice idea... When I tried this, the ajax call worked but the xhr.onreadystatechange is 'undefined' so I cannot do anything with it. (I got the samer error when trying to use a function in the 'beforeSend' ajax argument.) Does Jquery definitely return the XMLHTTP

Re: [jQuery] Flickering problem with Interface Slide in FF2

2007-02-22 Thread Karl Swedberg
Hi Jim, this bug has been fixed in the jQuery core (post 1.1.1). You can get a copy of the most recent nightly build here: http://docs.jquery.com/Downloading_jQuery#Nightly_Builds --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 22, 2007, at 3:02

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Christopher Jordan
Sweet Mike. Thanks! Chris Mike Alsup wrote: I'd like to be able to do this sort of thing too. To block just a particular div to indicate that something is happening in regards to *just* that area of the screen, and that the user can continue to work in other I'm going to add this

Re: [jQuery] Flickering problem with Interface Slide in FF2

2007-02-22 Thread Sanyi
Sorry Karl, this did not have been fixed, as I tried it, the flickering still exists on all effects except of fadeIn and fadeOut! Bye Alex(Sanyi) On 2/22/07, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Jim, this bug has been fixed in the jQuery core (post 1.1.1). You can get a copy of the most

Re: [jQuery] Gmail-style updates

2007-02-22 Thread Daemach
Grrr Nabble is tricky ;) Try this thread: http://www.nabble.com/forum/ViewPost.jtp?post=9089663framed=y Blair Mitchelmore-2 wrote: Could I maybe see the code? It's hard to customize something to a situation I nothing about. -blair Daemach wrote: OK I played around with this for a

[jQuery] Flickering problem with Interface Slide in FF2

2007-02-22 Thread Jim Nimblett
Hi everyone, I am trying to get an image to slide out and then back in again. Eventually, I will be displaying a new image with each rotation of the slider. Unfortunately, there seems to be an issue in Firefox 2 were the image is briefly displayed before it slides back in. This shows up as a

Re: [jQuery] jqUploader: flash-based file upload

2007-02-22 Thread Jason Huck
FYI, despite the allowed extensions specified in your code, I was able to upload a PDF file without errors. This was in Firefox 2.x/Mac. Looks interesting, though! - jason Alexandre Plennevaux wrote: Hello, my Plugin replacing file input fields with a richer Flash based upload

Re: [jQuery] Gmail-style updates

2007-02-22 Thread Blair Mitchelmore
$(document).ready( function() { $('[EMAIL PROTECTED]').each( function() { $(this).blur( function() { $.AjaxCFC({ url: /namechangedtoprotecttheinnocent.cfc, method: updateAttendee, data: {

Re: [jQuery] Flickering problem with Interface Slide in FF2

2007-02-22 Thread Brandon Aaron
It is fixed in the core but I believe Interface rewrites the fx module of jQuery and the bug probably exists there as well. Stefan, I can provide a patch for Interface if needed. -- Brandon Aaron On 2/22/07, Sanyi [EMAIL PROTECTED] wrote: Sorry Karl, this did not have been fixed, as I tried

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Mike Alsup
I'd like to be able to do this sort of thing too. To block just a particular div to indicate that something is happening in regards to *just* that area of the screen, and that the user can continue to work in other I'm going to add this functionality to blockUI since several people have

Re: [jQuery] jQuery and Rails

2007-02-22 Thread Joshua Messer
Here's something similar for PHP I saw on Ajaxian. Apologies if this has already been noted. http://www.ngcoders.com/php/pquery-php-and-jquery/ I have not examined it, so I can't say whether it's worth looking at. On 2/21/07, Yehuda Katz [EMAIL PROTECTED] wrote: I've carefully read all of the

Re: [jQuery] Gmail-style updates

2007-02-22 Thread Daemach
I appreciate you taking the time to lay this out. I'm really just trying to understand more than anything. Obviously this isn't the right forum to be asking questions about closures specifically, but if I can just get a grip on this... I tested this yesterday with the following code. At the

Re: [jQuery] Flickering problem with Interface Slide in FF2

2007-02-22 Thread Jim Nimblett
I took the latest build from 'Nightly_Builds' and am using interface 1.2(just re-downloaded from the site). The flickering problem still persists. I will keep my eyes our here for an update. Thank you very much. - Jim On 2/22/07, Brandon Aaron [EMAIL PROTECTED] wrote: It is fixed in the

[jQuery] interface imagebox

2007-02-22 Thread Brent Pedersen
hi, has anyone modified the interface imageBox to do slideshows? or are there any other _modal_ image plugins out there that will do slideshows where you press play and it loads images sequentially after a timeout?-- in addition to having the next and previous buttons? thanks. -brent

Re: [jQuery] Gmail-style updates

2007-02-22 Thread Blair Mitchelmore
I understand your frustration. When I first got into JavaScript all I ever heard was closures and I had no idea what they were, but you've pretty much got it. The problem you're having with the code you have there is that window.setTimeout doesn't modify scope, it uses the window as the scope

Re: [jQuery] Flickering problem with Interface Slide in FF2

2007-02-22 Thread Stefan Petre
This problem was in Interface for a long time. I managed to fix it a week ago and it is in SVN. I'm very very busy for the next two weeks or so and I can not release the changes. You can use ifx.js from SVN and the problem will be fixed. Stefan Jim Nimblett wrote: Hi everyone, I am trying

Re: [jQuery] Flickering problem with Interface Slide in FF2

2007-02-22 Thread Stefan Petre
This bug is not related to jQuery, it is related to Interface and he fact that for som animations the element it is wrapped by a DIV element. Karl Swedberg wrote: Hi Jim, this bug has been fixed in the jQuery core (post 1.1.1). You can get a copy of the most recent nightly build here:

[jQuery] Reference to newly inserted item?

2007-02-22 Thread dalvarado
Hi, If I have $(this).parents(div.sidebarToDo).find(td.sidebarText).empty().append('input type=text value= size=10 class=editableItem'); What is the best way to get a reference to the newly created text field? Note that it does not have an ID and I would prefer a more generic way of finding

Re: [jQuery] Reference to newly inserted item?

2007-02-22 Thread Blair Mitchelmore
$(this).parents(div.sidebarToDo).find(input.editableTDItem); is probably finding every thing you're added. Are you sure there's only one element in the resultant jQuery object? Either way, if the last input field is the only one your care about at the moment you can modify your search to be

Re: [jQuery] Flickering problem with Interface Slide in FF2

2007-02-22 Thread Karl Swedberg
Yes, thanks, Stefan. And I hope I didn't cause any confusion, either! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 22, 2007, at 5:33 PM, Brandon Aaron wrote: Oh okay. Thanks for clearing that up. Hope I didn't cause any confusion. :) --

Re: [jQuery] interface imagebox

2007-02-22 Thread Benjamin Sterling
Brent, You can check out this plugin http://www.projectatomic.com/litebox/ and you can put a setInterval to trigger the next click. setInterval ($('#nextlink').trigger('click'), 5000); this is not tested but I think it is somewhat right. -- Benjamin Sterling http://www.KenzoMedia.com

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Benjamin Sterling
Mike, this is sweet and I am sure I would be using it in some way. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Gmail-style updates

2007-02-22 Thread Daemach
Yeah that worked. I'm not certain I understand why though :) It does make sense that the closure would actually have to be created inside the event handler but .apply(self) is a new one for me. What exactly is that doing? Blair Mitchelmore-2 wrote: I understand your frustration. When I

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Rey Bango
I will definitely have a use for this. Rey Mike Alsup wrote: I'd like to be able to do this sort of thing too. To block just a particular div to indicate that something is happening in regards to *just* that area of the screen, and that the user can continue to work in other I'm going to

Re: [jQuery] interface imagebox

2007-02-22 Thread Brent Pedersen
thanks, i have looked at that one. and i have dug into the code some. doing what you suggest _seems_ fine, but then, you get to the last image and it keeps triggering click. also, instead of fading from 1 image to the next it shows the loading gif in between. and in that slideshow, i think the

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Rick Faircloth
Rey... how do you plan to use the blocking? Just curious... Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Thursday, February 22, 2007 6:16 PM To: jQuery Discussion. Subject: Re: [jQuery] BlockUI like plugin for divs I will

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Alexandre Plennevaux
Nice Mike! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: jeudi 22 février 2007 22:55 To: jQuery Discussion. Subject: Re: [jQuery] BlockUI like plugin for divs I'd like to be able to do this sort of thing too. To block just a

Re: [jQuery] Dynamicly adding tabs?

2007-02-22 Thread Klaus Hartl
Mikael Noone schrieb: Hi there, Is it perhaps possible to add tabs to the tab plugin dynamicly? If so, that would be a really usefull feature. What do you think? aint it a good idea? /Mikael. Yeah, thats on my list already. After Thickbox Reloaded, I have planned to completely rewrite

Re: [jQuery] interface imagebox

2007-02-22 Thread Klaus Hartl
Brent Pedersen schrieb: hi, has anyone modified the interface imageBox to do slideshows? or are there any other _modal_ image plugins out there that will do slideshows where you press play and it loads images sequentially after a timeout?-- in addition to having the next and previous buttons?

Re: [jQuery] interface imagebox

2007-02-22 Thread Benjamin Sterling
and to help with keeping the load time down try: style type=text/css /* Caching CSS courtesf of; Klaus Hartl [EMAIL PROTECTED] */ @media projection, screen { div.imgCache { position: absolute; left: -8000px; top: -8000px; } div.imgCache img { display:block; } } @media print {

Re: [jQuery] interface imagebox

2007-02-22 Thread Benjamin Sterling
well, there are a few ways to fix some of what you worry about. But after looking at the imageBox plugin, you can do the samething that I mentioned above. take a look at what is going on in firebug in the html concole. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Rey Bango
There are sections of a form that I would like to block in certain instances. This will allow me to do it in a way that lets the user know that things are not accesible. :) Rey Rick Faircloth wrote: Rey... how do you plan to use the blocking? Just curious... Rick -Original

Re: [jQuery] BlockUI like plugin for divs

2007-02-22 Thread Klaus Hartl
Rey Bango schrieb: There are sections of a form that I would like to block in certain instances. This will allow me to do it in a way that lets the user know that things are not accesible. :) Rey, what about setting the disabled attribute here? -- Klaus

[jQuery] Calendar with ajax w/o refresh whole page question

2007-02-22 Thread sebastianw wurtz
I have a calendar that allows me to cross the months and to show the days of such like being used like a news archive, my problem is to do that the Link to the months and years following and previous must refresh single the calendar and not it whole page, I suppose that i could use ajax. I

Re: [jQuery] Reference to newly inserted item?

2007-02-22 Thread Ⓙⓐⓚⓔ
after the append, you can keep the chain going at the freshly appended by finding the last child. by following $(this).parents(div.sidebarToDo).find(td.sidebarText).empty().append('input type=text value= size=10 class=editableItem') with .children(':last') since append creates a new last

Re: [jQuery] Best way to do AJAX... CF or jQuery?

2007-02-22 Thread Michael E. Carluen
Rick, You need both. You use jQuery to send requests to a server side scripting language like CF (or php, asp, cgi, etc) . Perhaps the simplest way to introduce yourself to an ajax activity would be to use jQuery's load() function. Try this:

Re: [jQuery] Text looks choppy in IE7 with Opacity

2007-02-22 Thread Mike Alsup
I haven't had the chance to test this yet. Can anyone else confirm that setting a background image, even just a 1x1 transparent gif, solves this issue? It doesn't work for me. I just tried applying a bg image to everything and text renders the same ie7 (I tried transparent and opaque). This

Re: [jQuery] Text looks choppy in IE7 with Opacity

2007-02-22 Thread Joel Birch
Brandon you inspired me to test it. Alas, I could not get it to solve the problem. I tried with the transparent gif and then with a regular image gif. I tried applying the image to the element being animated, and also tried it on the actual elements that contained the text node. No luck.

Re: [jQuery] Calendar with ajax w/o refresh whole page question

2007-02-22 Thread Benjamin Sterling
I songs like you need to do something like: $(#calenderdiv).load(calendar.php); and then if you want to change months you need to create a link or something that will pass some params back to the calender. maybe something like: $('#nextmonth').click(function(){ $.ajax({ data: {month:

Re: [jQuery] Text looks choppy in IE7 with Opacity

2007-02-22 Thread Brandon Aaron
Man that was going to be so cool if it worked. :/ I appreciate the tests Mike and Joel. :) -- Brandon Aaron On 2/22/07, Joel Birch [EMAIL PROTECTED] wrote: Brandon you inspired me to test it. Alas, I could not get it to solve the problem. I tried with the transparent gif and then with a

Re: [jQuery] Best way to do AJAX... CF or jQuery?

2007-02-22 Thread Rick Faircloth
Thanks, Mike. Now, for someone like me, who has absolutely no experience with AJAX, what would be the most simple thing I could do with AJAX... just to get my feet wet. I'm still using CF 4.5, so it'll have to be compatible with that. Perhaps you know of a basic AJAX example/tutorial that

[jQuery] How can I create a (style) .class dynamically?

2007-02-22 Thread Daemach
I'm working on a plugin that allows a user to specify style classes to be applied to an element before and after an action is complete. I need to set defaults, though. How can I create these classes dynamically without assuming there is an existing stylesheet or style block in the document?

Re: [jQuery] Best way to do AJAX... CF or jQuery?

2007-02-22 Thread Benjamin Sterling
Rick, Here is a super quick example: create a .cfm page, we'll call it test.cfm, on the page just put Hello world and nothing else, no other code. can create another page and we'll call it test.htm, this is going to be a basic html page an put the following in the head section: script

Re: [jQuery] Text looks choppy in IE7 with Opacity

2007-02-22 Thread Mike Alsup
http://ov-staging.informationexperts.com/d.htm If I am way off base let me know. Hi Benjamin, The problem with IE7 is with non-bold text. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

  1   2   >