[jQuery] Re: down-loadable tutorial videos ??

2008-05-31 Thread Alexandre Plennevaux
what kind of tutorials are you looking for ? Alexandre Plennevaux *LAb[au]* *lab*oratory for *a*rchitecture and *u*rbanism http://www.lab-au.com Ph: +32 2 219 65 55 104 rue de Laeken 1000 Brussels Belgium On Fri, May 30, 2008 at 4:33 PM, GiJeet [EMAIL PROTECTED] wrote: Hello, if anyone

[jQuery] Re: New Plugin: Magnify

2008-05-31 Thread MorningZ
That is a way cool plugin, very nice work i look forward to getting to implement it on this site i am working on

[jQuery] Re: beginner variable problem

2008-05-31 Thread bobh
both your solutions work wizzud, thanks for helping. On 28 mei, 01:10, Wizzud [EMAIL PROTECTED] wrote: $(document).ready(function(){ var parags = $(#contests ul li p); $(#contests ul li span a).each(function(i){ var parag_count = i; $(this).toggle( function(){

[jQuery] chain Selected Issue

2008-05-31 Thread Randy Johnson - CFConcepts
Hello, I am developing a Task list to help myself learn Jquery better. I am working on trying to add a mix of plugins and writing my own stuff. Here is my first issue: http://localhost/cf/cftask/jq_clientsites.cfm?mycl=undefined_id=client_name=client_value=1 mycl is undefined. I cannot

[jQuery] Re: New Plugin: Magnify

2008-05-31 Thread Quinode
LIke it too :) Did you see it under safari mac ? it works but the magnified div position is not as i firefox

[jQuery] Plugin to open a sub-window on a page

2008-05-31 Thread [EMAIL PROTECTED]
I need to be able to open new sub-windows on a page : divs that can be moved, re-sized, closed, (and possibly minimized). Something like http://www.prototype-ui.com/ . Is there such a thing somewhere? Thanks.

[jQuery] Remove text from a div

2008-05-31 Thread caroig
I have a div containing text and an unordered list. I was to clear the text from the div without affecting the ul. $('#mydiv').text() returns just the text string, while $ ('#mydiv').text('') successfully clears the text but also removes the html. How can I remove just the text? Thanks

[jQuery] site making

2008-05-31 Thread tetris
looking for a developper who would make this site in js: http://www.iceberg.fr/site_iceberg/flash1280.html i'll pay 900 dollars for making it and assist me.cause i would also be helping in the process, money will be payed as work is given, on a trust basis: you give work i give part of money.

[jQuery] jQuery+Cycle : slideshow with progressive image loading

2008-05-31 Thread Nicolas Le Thierry d'Ennequin
Hello, A previous discussion here (http://groups.google.fr/group/jquery-en/ browse_thread/thread/319177a5a9bb22a9/01b7544ac7203748) and a recent addition the to the Cycle plugin (see http://www.malsup.com/jquery/cycle/add.html) makes me think that creating JQuery+Cycle slideshows with

[jQuery] Multiple sub-windows

2008-05-31 Thread [EMAIL PROTECTED]
(I thought I posted this yesterday, but don't see it. Apologies if double-posted). Is there a jquery plugin (or something) that would let me have multiple sub-windows (divs) on a page, with the ability to move, re- size, open, close, and possibly minimize each of them? Something like

[jQuery] Queue regular function with hide and show

2008-05-31 Thread XeroXer
Hi there. I have played around a bit with hide() and show() the last few days and ended up creating a function to show certain tables on a page. function toggleShow(id) { $('.tbl').hide('slow'); $('#' + id).show('slow'); } $(document).ready(function() {

[jQuery] ajax function executed frequently

2008-05-31 Thread Smart
Hi, I want to execute some Jquery ajax function frequently. Something like: ajax query - (2sec delay) - ajax query - (2sec delay) - etc... It can't depands on user interactions, just work in background. I think that solution is simple, but i can't find this kind of function in jquery

[jQuery] Re: jquery.magnify by Josh

2008-05-31 Thread Trend-King
Thank you for the fast reply i bind the magnify to the click function and it works like it should work YOUR a Genius. THX i've sended you a lot of eMails maybe you can reply me here or by email On 30 Mai, 23:29, Josh Nathanson [EMAIL PROTECTED] wrote: Trend-King,

[jQuery] Re: jquery.magnify by Josh

2008-05-31 Thread Trend-King
i also attached a: // remove the alt tag img.removeAttr(alt); before the: img.bind( settings.showEvent, activate ); to switch of the alt hover greet jens On 30 Mai, 23:29, Josh Nathanson [EMAIL PROTECTED] wrote: Trend-King,

[jQuery] Re: New Plugin: Magnify

2008-05-31 Thread [EMAIL PROTECTED]
Very nice work on this! On May 30, 12:49 pm, Josh Nathanson [EMAIL PROTECTED] wrote: Hey all, Got a new plugin for folks to check out - it allows you to create an image magnifier like those you see on a lot of e-commerce sites. Here's the link: http://tinyurl.com/6kwzf9 Features

[jQuery] Re: Queue regular function with hide and show

2008-05-31 Thread Michael Geary
Use the completion callback that the hide() and show() functions provide: function toggleShow(id) { $('.tbl').hide( 'slow', function() { $('#' + id).show('slow'); }); } Also, are you sure you want to use hide('slow') and show('slow'). When I see those effects

[jQuery] Re: jquery.magnify by Josh

2008-05-31 Thread Josh Nathanson
Trend-King - I've fixed the preload = true issue as well as the other bug with quick mouse in-and-out. The fixes are in version 1.0.1. Anyone who may have downloaded version 1.0.0, please go and replace it with 1.0.1. http://www.jnathanson.com/index.cfm?page=pages/jquery/magnify/magnify

[jQuery] Re: chain Selected Issue

2008-05-31 Thread Michael Geary
Randy, no one will be able to see your test page on localhost. Can you put it on a public site? From looking at your code, the mycl=undefined happens because $('#project').attr(value) returns undefined. The likely reasons for this would be either that $('#project') does not return any elements,

[jQuery] Re: ajax function executed frequently

2008-05-31 Thread Rolando Espinoza La Fuente
On Sat, May 31, 2008 at 5:32 AM, Smart [EMAIL PROTECTED] wrote: Hi, I want to execute some Jquery ajax function frequently. Something like: ajax query - (2sec delay) - ajax query - (2sec delay) - etc... It can't depands on user interactions, just work in background. I think that solution

[jQuery] Re: Remove text from a div

2008-05-31 Thread Smart
Maybe try ('#mydiv ul').text('') , or something like that On 31 Maj, 13:28, caroig [EMAIL PROTECTED] wrote: I have a div containing text and an unordered list. I was to clear the text from the div without affecting the ul. $('#mydiv').text() returns just the text string, while $

[jQuery] A gotcha with attr(key,value)

2008-05-31 Thread Peter
If a form has a child element (eg a select) whose 'name' attribute is 'action' then the line: $(form).attr(action,newaction.php) fails silently. Line 1070 of jquery.js (1.2.6) is elem[name]=value which equates to elem['action']='newaction.php'. But the value of elem[name] is the child element,

[jQuery] Re: timing of multiple Cycle slides (Cycle Plugin)

2008-05-31 Thread aronduby
man, that works like a charm, thanks so much! On May 30, 5:32 pm, malsup [EMAIL PROTECTED] wrote: I working on a site that uses 4 instances of the Cycle plugin to rotate divs filled with text. The client loves it, but they don't want them to all cycle at the same time. They want box 1 to

[jQuery] jQuery 1.2.6 + interface + IE

2008-05-31 Thread Jeno
hi all! =) I download last version of interface plugin...from interface I use iutil.js, islider.js, idrag.js, idrop.js... I write my script for jQuery 1.1.2, all work's good (in all browsers), when I download and replace jQuery on 1.2.6 version, my script not work in MS InternetExplorer 6 =(

[jQuery] Re: New Plugin: Magnify

2008-05-31 Thread Josh Nathanson
LIke it too :) Did you see it under safari mac ? it works but the magnified div position is not as i firefox The Safari/Mac issue is fixed now, please grab the latest version 1.0.1 for this fix. -- Josh

[jQuery] Re: jQuery 1.2.6 + interface + IE

2008-05-31 Thread Cloudream
Interface doesn't work with jQuery 1.2.x. Try jquery UI :) http://ui.jquery.com On Jun 1, 12:40 am, Jeno [EMAIL PROTECTED] wrote: hi all! =) I download last version of interface plugin...from interface I use iutil.js, islider.js, idrag.js, idrop.js... I write my script for jQuery 1.1.2, all

[jQuery] Re: A gotcha with attr(key,value)

2008-05-31 Thread Ariel Flesler
There's already a patch for this but needs to be tested quite much. Note that this wasn't introduced on jQuery 1.2.6. Same happened (at least on IE) when using 1.2.3. 1.2.6 works better than 1.2.3 as attributes like id, name, etc are correctly retrieved from forms, while 1.2.3 was failing. The

[jQuery] Re: jQuery 1.2.6 + interface + IE

2008-05-31 Thread Ariel Flesler
Please try using 1.2.3, 1.2.1. You're using quite an old version of jQuery and no one assures you that Interface is compatible with the last releases of jQuery. Maybe Interface needs to be updated to be compatible (not the other way around). Cheers -- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re: jQuery 1.2.6 + interface + IE

2008-05-31 Thread Ariel Flesler
Please try using 1.2.3, 1.2.1. I meant that as: if it doesn't work with those versions either, then it certainly needs to be updated and it's not because of a recent change to jQuery. Cheers -- Ariel Flesler http://flesler.blogspot.com

[jQuery] Re:[validate] Packed version not working in IE6

2008-05-31 Thread Ariel Flesler
Are you using 1.2.5 ? if so, update to 1.2.6. Please specify which plugin are you talking about in the title of the post. Else the plugin owner (Jörn) might problably skip it. Cheers -- Ariel Flesler http://flesler.blogspot.com On 30 mayo, 19:49, Drakanor [EMAIL PROTECTED] wrote: I just came

[jQuery] Re: Multiple sub-windows

2008-05-31 Thread steve_f
eeek 379k for the pleasure on that demo page On May 31, 3:05 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: (I thought I posted this yesterday, but don't see it. Apologies if double-posted). Is there a jquery plugin (or something) that would let me have multiple sub-windows (divs) on a

[jQuery] Re: Queue regular function with hide and show

2008-05-31 Thread XeroXer
I really thought that would solve it, looked so promising. I used the slideUp and slideDown effects instead since they looked a lot better, though it does now wait for the first effect to complete. If anything it starts the slideDown earlier when I use the method you wrote, and after it's done

[jQuery] Please verify

2008-05-31 Thread vfranklin
My understanding is that we strove to be and are in compliance with GNU GENERAL PUBLIC LICENSE. How do we know if this is true? http://www.davenport.edu thank you

[jQuery] Re: Plugin to open a sub-window on a page

2008-05-31 Thread Joel Newkirk
http://docs.jquery.com/UI/Dialog - the basic UI Dialog element from the jQuery UI supports draggable and resizable. j On Fri, May 30, 2008 at 11:44 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I need to be able to open new sub-windows on a page : divs that can be moved, re-sized, closed,

[jQuery] Why is this simple thing not working..??

2008-05-31 Thread Mark
Hey, i'm having this simple piece of javascript: function hovertest() { var timeoutRunning = false; if (timeoutRunning == false) { timeoutRunning = true; alert('true...'); } else { alert('JEAAA FALSE'); } } a href=#

[jQuery] Re: Contextmenu plugin help

2008-05-31 Thread Ken Gregg
Check the replys to your pervious post http://groups.google.com/group/jquery-en/msg/55ebad127bccbbc9 On May 30, 2:39 pm, Mauricio Farah [EMAIL PROTECTED] wrote: Hi, I need help with this plugin. I'm not sure if this is the place to post it, I apologize if it isn't but I don't know how to

[jQuery] Re: A gotcha with attr(key,value)

2008-05-31 Thread Peter Mott
That's great though I am not sure it is worth complicating jquery for. It's a very marginal sort of bug I think. Thanks, Peter Ariel Flesler wrote: There's already a patch for this but needs to be tested quite much. Note that this wasn't introduced on jQuery 1.2.6. Same happened (at least

[jQuery] Re: Why is this simple thing not working..??

2008-05-31 Thread Mark
Got it working with this: function Hovertest() { this.timeoutRunning = false; this.hover = function() { if (!this.timeoutRunning) { this.timeoutRunning = true; alert('true...'); } else { alert('JEAAA FALSE');

[jQuery] Re: jQuery+Cycle : slideshow with progressive image loading

2008-05-31 Thread malsup
A previous discussion here (http://groups.google.fr/group/jquery-en/ browse_thread/thread/319177a5a9bb22a9/01b7544ac7203748) and a recent addition the to the Cycle plugin (seehttp://www.malsup.com/jquery/cycle/add.html) makes me think that creating JQuery+Cycle slideshows with progressive

[jQuery] Re: jquery.magnify by Josh

2008-05-31 Thread Trend-King
Hi there. thank you for your fast reply. the version 1.0.1 is worst then the first version sorry i had to say that but now there are bugs. i use display left from the image now it appears in firefox too far away from the image. and now it forces an error if i use the preload false attribute.

[jQuery] superfish help

2008-05-31 Thread warren
I am trying to do something that is a combinations of examples... I want it to work like this example, but have normal vertical submenus on the 3rd level that hide on mouseout. http://users.tpg.com.au/j_birch/plugins/superfish/all-horizontal-example/ Also - if the 1st level menu item does not

[jQuery] Opera, IE8, JQuery Dialogs

2008-05-31 Thread Rob Ashton
Two things. In opera: $('#confirmSnippetDelete').dialog( { position: new Array(600 , 500) } ); The script ignores the 'top' position specified as the second value of that coordinate pair. This was narrowed down to a local variable called 'top' which was conflicting with the

[jQuery] Re: jquery.magnify by Josh

2008-05-31 Thread Trend-King
maybe in further versions ou can build in a window.resize fix, if au resize the window wenn loaded the page the magnify don' work on the right possition On 31 Mai, 22:54, Trend-King [EMAIL PROTECTED] wrote: Hi there. thank you for your fast reply. the version 1.0.1 is worst then the first

[jQuery] Re: Opera, IE8, JQuery Dialogs

2008-05-31 Thread Richard D. Worth
Thanks. This has been fixed in svn: http://dev.jquery.com/view/trunk/ui/ui.dialog.js and will be included in the next jQuery UI release, in a couple days. - Richard On Sat, May 31, 2008 at 5:12 PM, Rob Ashton [EMAIL PROTECTED] wrote: Two things. In opera:

[jQuery] expand-refs

2008-05-31 Thread Andy Chambers
Hi, I'm generating some code that looks like the snippet below. Embedded within the html are some xref elements. I want to expand each one according to the corresponding property of the defs object. My naive attempt is as follows function expand_refs () { $(xref).each(function (i) {

[jQuery] Re: Xpath in frames

2008-05-31 Thread xunshirine
Hi. Still couldnt find a way to create an on the fly document node for subframes. Just please let me know why $(window.parent.frames[0].document) doesnt return an object in a frameseted document. Thanks in advance. On May 23, 11:14 pm, xunshirine [EMAIL PROTECTED] wrote: Hello. $ function works

[jQuery] Re: Opera, IE8, JQuery Dialogs

2008-05-31 Thread Rob Ashton
Cool. Sorry for posting this in the wrong area, I thought I'd hit the UI place (I thought it had been deleted for a moment..) On May 31, 11:08 pm, Richard D. Worth [EMAIL PROTECTED] wrote: Thanks. This has been fixed in svn: http://dev.jquery.com/view/trunk/ui/ui.dialog.js and will be

[jQuery] don't animate elements which are in progress of animation?

2008-05-31 Thread next
how can i animate only static elements? My code: $(document).ready(function() { $(#control_panel li a).hover( function(){ $(this).animate({paddingLeft: 50px}, 200); }, function(){

[jQuery] Re: Plugin to open a sub-window on a page

2008-05-31 Thread [EMAIL PROTECTED]
Thanks! On May 31, 2:37 pm, Joel Newkirk [EMAIL PROTECTED] wrote: http://docs.jquery.com/UI/Dialog- the basic UI Dialog element from the jQuery UI supports draggable and resizable.

[jQuery] Re: superfish help

2008-05-31 Thread Joel Birch
Hi Warren, Sorry for the delay in responding. This sounds like the same issue recently discussed here: http://groups.google.com/group/jquery-en/browse_thread/thread/41fd759a678f6dcc The solution was found in that thread. The quick answer is to use Superfish 1.4.2beta which you can find here:

[jQuery] Re: Help learning...

2008-05-31 Thread Aaron
Is there anything that I done wrong with the script?? I still can't get it to work. the list is hidden so at least I am that close on getting the thing to work. I am right now just trying to fade in a list next to the image when the mouse is over the image. On May 28, 4:32 pm, Aaron [EMAIL

[jQuery] Re: don't animate elements which are in progress of animation?

2008-05-31 Thread duck!
Perhaps you want to use .queue() to see if there is an animation already in progress before triggering a new one. untested, but something like this in the hover functions might be the go: if ($(this).queue(fx).length 1) ...etc http://docs.jquery.com/Effects/queue for more info next

[jQuery] jQuery Effects (show, hide, slideUp, slideDown...) glitch with padding or margin

2008-05-31 Thread Yuval
Hey Guys, I'm sure this has been asked a million times but I couldn't seem to find an answer after searching. Here is the situation CSS: #mydiv{ padding:15px; margin-bottom:10px; text-align:center; } HTML: div id=mydivHello World/div Javascript: $(document).ready(function(){ $(#mydiv).hide();

[jQuery] Best way to do tree-navigator + content-pane layout?

2008-05-31 Thread Sophie
I am trying to something like this, with a tree navigator in the left and a content pane on its right. What is the best way to make the right edge of the tree navigator movable (i.e. T is resizable, but C resizes simultaneously)? | | | |

[jQuery] Re: Plugin to open a sub-window on a page

2008-05-31 Thread [EMAIL PROTECTED]
Follow-up questions ... It looks like I need an existing someElement and have to call someElement.dialog(options) and this will move someElement into the (nested) contents of the new dialog window. How do I use this to open multiple simultaneously visible active windows, each with newly

[jQuery] Re: Plugin to open a sub-window on a page

2008-05-31 Thread Richard D. Worth
Just create the content dynamically, and call .dialog on the resultant element. Something like $(div/).html(Hibr).dialog(); It will get automatically get appended to the body and positioned depending on the options you pass. Or if you've got 5 elements already, say they all have a class of

[jQuery] Re: Best way to do tree-navigator + content-pane layout?

2008-05-31 Thread rolfsf
Have you tried the jquery splitter plugin? http://methvin.com/jquery/splitter/default.html On May 31, 6:38 pm, Sophie [EMAIL PROTECTED] wrote: I am trying to something like this, with a tree navigator in the left and a content pane on its right. What is the best way to make the right edge of