[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-05 Thread OutOfTouch
Can I clear out what was previously loaded, so the only the selected category is being viewed? Yes.  Stop the slideshow, empty it, reload it, and then restart it. var $slideshow = $('#slideshow').cycle('stop').empty(); $slideshow.append( mySlide1); $slideshow.append( mySlide2); etc...

[jQuery] Re: Hide/Show in IE 6

2008-11-05 Thread Kru
I cant see why it shouldnt. Just give it a try?! Maybe even use firebug - itll take all of about 10 seconds that way :) On Nov 6, 10:34 am, OutOfTouch [EMAIL PROTECTED] wrote: Will this work in IE 6? $('#listings').show(); I can't remember for sure but I thought that didn't work in IE 6.

[jQuery] Re: Hide/Show in IE 6

2008-11-05 Thread Kru
Firebug Lite i should say considering its IE On Nov 6, 12:35 pm, Kru [EMAIL PROTECTED] wrote: I cant see why it shouldnt. Just give it a try?! Maybe even use firebug - itll take all of about 10 seconds that way :) On Nov 6, 10:34 am, OutOfTouch [EMAIL PROTECTED] wrote: Will this work in

[jQuery] Re: Clone problem in IE...

2008-11-05 Thread Choan Gálvez
On Nov 5, 2008, at 6:53 PM, Rafael Soares wrote: I had a similar problem... The difference is that I'm trying to clone the file input inside the same document, just another, hidden, form. I found a workaround, but I don't know if it'll work for you as well. Since I was going to clear the

[jQuery] Re: Check if remote file exists.

2008-11-05 Thread Karl Rudd
What you want is a HEAD request. See the following for details: http://www.jibbering.com/2002/4/httprequest.html http://www-128.ibm.com/developerworks/web/library/wa-ajaxintro3/ Karl Rudd On Thu, Nov 6, 2008 at 5:54 AM, Genu [EMAIL PROTECTED] wrote: Is it possible to use jquery to

[jQuery] TableSorter Pagination: Move pagination to top

2008-11-05 Thread ripcurlksm
Is there any way i can move the pagination div to the top of the table sort-- because the last page of the table sort always has a white gap between the last row and the pagination buttons. Two ways to solve this would be to either move the pagination to the top or fix the pagination div so

[jQuery] Scrolling inside a div with mousemove

2008-11-05 Thread Dan
Hello, I'm trying to move from MooTools over the jQuery as it seems to be a much reliable and user friendly framework. However I need to recreate something that I currently have MooTools doing but am having trouble figuring out how it would work. I'm trying to replicate the effect seen in the

[jQuery] Slide out sidebars

2008-11-05 Thread Taco
I am attempting to design a site with a central liquid area, and two side areas that provide auxiliary information. When the browser window is made smaller and the viewport is reduced below 1024 px, I want these side areas to slide into a minimized position showing different xhtml files. when

[jQuery] I'm having problems making a div show up when I load the page

2008-11-05 Thread Brian
I'm using jqModal.. I simply want an email subscription list to pop up when the page is loaded here's what I've got. script type=text/javascript $(document).ready(function() { $('#dialog').jqm(); }); /script a href=# class=jqModalview/a -that is a link... I don't want to use a

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-05 Thread Mike Alsup
Mike, If I call  var $slideshow = $ ('#slideshow').cycle('stop').empty();  when it is not running  and is empty will it error out? Don't be afraid to experiment with these things yourself. You'd already have your answer by now. Mike

[jQuery] validator plugin dynamic form names

2008-11-05 Thread lance123
Hi Jorn, Really like the plugin! How do use dynamic form names? I have tried numerous methods but it won't accept my variable. ie $(#+MyFormName) My variable is set ok but it just does not seem to work. The reason I want to do this is because I am dynamically creating the form names from

[jQuery] Survey for pro and non-pre developers

2008-11-05 Thread steviegee
Hi everyone - I am a researcher in the Visual Studio User Experience team - I am undertaking research focused on professional and non- professional web developers. I'd really appreciate you taking 5 minutes to run through one of the survey's: Professional Developers:

[jQuery] Re: Scrolling inside a div with mousemove

2008-11-05 Thread Jeffrey Kretz
Well, you could do something like this (completely untested, sorry). The hover events bind and unbind the mousemove to prevent resource drain. $('#thisdiv').hover(startScroll,stopScroll); function startScroll(e) { var div = $(this).bind('mousemove',scrollThis); var o = div.offset();

[jQuery] Re: Check if remote file exists.

2008-11-05 Thread Jeffrey Kretz
That's pretty interesting -- I never thought of that. So I imagine an $.ajax({url:'somefile.dat',type:'HEAD',error:do_something}) would be enough to check for a 404. Nifty. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Rudd Sent:

[jQuery] Re: accessing child element without unique id

2008-11-05 Thread FrenchiINLA
var $col = $('#row1 td') will give you a collection of all td under row1, then you can filter by first, last, or even use ordianal positon like $col[0] etc. On Nov 5, 11:59 am, Jared_T [EMAIL PROTECTED] wrote: I'm trying to access a td text value, as shown in the javascript below.  The easiet

[jQuery] Re: 26 october occuring two times: datepicker bug?

2008-11-05 Thread Dave Methvin
Sounds like you ran into this bug: http://groups.google.com/group/jquery-ui/browse_frm/thread/d4f1fb64735d9bad/637bfdc13982576e

[jQuery] Form Plugin - how to capture a return value?

2008-11-05 Thread Info
Hello, I am hoping you can point in the right direction. I want to use the Form Plugin to post to a page which will check for an email address. That page will have a query which says the email address is found or not found (email=1 or email=2) How do I go about using the Form Plugin to check for

[jQuery] Re: Slide out sidebars

2008-11-05 Thread Jeffrey Kretz
Try something like this: div.toolbox{ position:absolute; top:0px; right:0px; width:220px; height:99%; border-left:solid 1px #00; overflow:hidden overflow-x:hidden; overflow-y:hidden; } Monitor the resize event. window.lastWidth =

[jQuery] Re: Bug in IE7 - Complains about Opera bindReady code in jquery

2008-11-05 Thread Gregoriusness
IE7 is failing when that code block is not commented out. Whether or not IE is trying to execute the code (and the browser detection failing) i'm not quite sure about... I haven't had the time to look into it any further, just flagging it as a potential issue. On Nov 4, 10:25 am, Jeffrey Kretz

[jQuery] Re: Hide/Show in IE 6

2008-11-05 Thread OutOfTouch
Thanks, I will try it.

[jQuery] Re: Expert jQuery Hackers Needed

2008-11-05 Thread Pixelstuff
Where do the hacking skills come in? That you need. On Nov 3, 10:56 am, Syn-UX [EMAIL PROTECTED] wrote: Hey all, This is a shameless post, but our company, Synacor, is in need to hire some expert jQuery hackers. We basically make internet portals for ISP's - we need some hackers who can

[jQuery] Re: order of script not right (explained inside)

2008-11-05 Thread FastNOC
OK hopefull this is the last question. I need this to be smaller. the script takes up the whole width because the css specifies 100%. So i shortened it to 980, the width of my page. But I want it centered. it aligns left. text-align:center centeres the text within the div, not the whole panel,

[jQuery] Re: order of script not right (explained inside)

2008-11-05 Thread Jeffrey Kretz
My guess is it's an absolutely positioned element, which won't respond well to auto margins. If this is the case, one option would be to measure the width of the window at the time of drop-down, calculate and set the css left appropriately. If it is a static/relatively positioned element, and

[jQuery] Re: Bug in IE7 - Complains about Opera bindReady code in jquery

2008-11-05 Thread Jeffrey Kretz
Fair enough. If you have a test case online, I'd be happy to step through the code in debug mode. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gregoriusness Sent: Wednesday, November 05, 2008 7:17 PM To: jQuery (English) Subject:

[jQuery] Re: Survey for pro and non-pre developers

2008-11-05 Thread steviegee
I noticed that the second link was not correct- here's and update Non- professional developer/hobbyist: http://www.surveymonkey.com/s.aspx?sm=qXay_2bP9Ib4zmUAvu2hxbbg_3d_3d On Nov 5, 4:59 pm, steviegee [EMAIL PROTECTED] wrote: Hi everyone - I am a researcher in the Visual Studio User

[jQuery] Re: Google Charts

2008-11-05 Thread moscorp
hello Choan, thanks for help ! in php, div id=mpngicnt80,30,50/div in js var valueArray = $.trim($('#mpngicnt').text()).split(','); -- after that, valueArray return 80 30 50 -- still can't pass the array into gchart series: [ $.gchart.series(valueArray, 'red')] please comment !

[jQuery] Re: How to solve this

2008-11-05 Thread Johny
Nobody knows the answer to my question ? :-(

[jQuery] Re: on click doesn't work!

2008-11-05 Thread Miri Sherman
Yeah I had to change the onclick function to onchange and everything works just wonderful!!! Thanks the both of you for all your help!! :) Miri. 2008/11/5 MorningZ [EMAIL PROTECTED] Juts like Andy says http://pastebin.com/m4cbd67f btw, you wanted to use change, not click (as my code

<    1   2