[jQuery] Re: jQuery 1.2.2 compressed to 14.3KB

2008-01-25 Thread Alexandre Plennevaux
if you gzip compress your file, then you lose a few millisecs for the browser to decompress it.Given your figures, i'd say the 1Kb advantage does not compensate for the browser having to decompress it. besides, i found that the flash plugin does not work properly if u use the gzip version of

[jQuery] Re: .::: New Social Networking Site :::.

2008-01-25 Thread Alexandre Plennevaux
-- Original Message -- To: Jquery-en (jquery-en@googlegroups.com) From: Matt Quackenbush ([EMAIL PROTECTED]) Subject: [jQuery] Re: .::: New Social Networking Site :::. Date: 25/1/2008 3:31:00 God I hate spam. God i hate social networking sites . Alexandre Plennevaux -

[jQuery] Re: Selecting listboxes that are in a table

2008-01-25 Thread George
Hi there, The selector only matches an immediate child so in your example, the only children of #ColumnEdit are tr elements, not select elements. That said, I'm surprised #ColumnEdit tr td select did not return any matches. Could it be because you've used a self-closing tag instead of

[jQuery] Re: Feb 12 IE6 Forced Update

2008-01-25 Thread SeViR
Only one word: MultipleIE's http://tredosoft.com/Multiple_IE I have installed IE 7 as usual browser, and with MultipleIE for test my webs in IE 6, IE 5.5, IE5 and IE 4 ;) Without virtual machines Andy Matthews escribió: The article I read mentioned that MS is going to force IE7 on users,

[jQuery] Re: How do I stop the form control (but not the label) itself receiving the error class

2008-01-25 Thread Dave Stewart
Jörn, Thanks! That was what I wanted! A lot of jQuery plugins have so many options that sometimes it's difficult to see the wood for the trees. Thanks again for pointing this out Diego, thank you also for your input into this matter. Cheers, Dave

[jQuery] Re: using a different tag than label for error messages

2008-01-25 Thread Dave Stewart
Hi MorningZ, I just did some quick Googling on the matter, and turned up this useful link: http://www.456bereastreet.com/archive/200711/use_the_label_element_to_make_your_html_forms_accessible/ Each label element can only be associated with a single form control, while a form control may have

[jQuery] Re: Masked input plugin for hour

2008-01-25 Thread Bruno Eustáquio F. Andrade
Thanks Eric, solved my problem perfectly. Great solution. On Jan 23, 2008 10:42 PM, EricC [EMAIL PROTECTED] wrote: $.mask.addPlaceholder('~',[0,1,3,4]); $.mask.addPlaceholder('!',[0,5]); $(#quarterhour).mask(~!); This won't stop you user from putting in 05,10,35,40 but you can put in a

[jQuery] Shadowbox Media Viewer

2008-01-25 Thread mjijackson
Hello all, I'm putting the finishing touches on a media viewer application that I coded up recently (think Thickbox). It can be used with jQuery or any other library. I created an adapter for jQuery, and I thought that somebody on this list might be interested.

[jQuery] Re: Scrollable image in a div

2008-01-25 Thread Dave Stewart
Pete, Great little plugin there! I've done teh same using vanilla JavaScript; have yet to convert it to jQuery but this is a nice insight. One problem (bug) is that you seem to have to click (then it freezes) then release to move around, then re-click to cancel. Do you know why the mouse

[jQuery] keeping header at the top of page

2008-01-25 Thread robing
Hi Guys, i have been asked to build a template that has a div block that contains a header image and nav that needs to stay visible at the top of the screen even when the user scrolls down the page. i know this can be done in frames but i would like to do this with jquery, the trouble is i don't

[jQuery] is it a bug with validate?

2008-01-25 Thread Jacky
Hi, I valiate two fields that depend on each other if blank,for example,user must supply he/her telephone number or mobile number,he/ her just need input the one of that(telephone number or mobile number). I set the rules like this: rules:{ telephone:{ required:#mobile:blank,

[jQuery] howto properly rebind hover

2008-01-25 Thread h0tzen
hello, i am having problems to rebind the hover event on table-rows, the unbinding works just fine but the hovering does not work anymore, the hover does not get bound again. snippet: code // hover this.table.find('tbody

[jQuery] Re: [validate] using a different tag than label for error messages

2008-01-25 Thread Dave Stewart
Jörn, I've just realised that you're the author. Congratulations on a really great plugin! I was midway through my own validation power-plugin when I discovered yours - and I'm TOTALLY impressed! So much so that I shall consign mine to the scrapheap. It's great that you can override the error

[jQuery] Re: How do I stop the form control (but not the label) itself receiving the error class

2008-01-25 Thread Dave Stewart
Jörn, highlight does exactly what I want if I pass it an empty function, so that's great. How about adding the option to pass null or false for those times when you want to do nothing and just let the the error message take the strain? Cheers, Dave

[jQuery] Re: jQuery, AJAH IE 7

2008-01-25 Thread Vlad Mazek
MorningZ, As mentioned, the live page is here: http://support.ownwebnow.com/test589.php 1. Basically, I am using jQuery forms and based on the input on the front page I return another form (not nested) into div id='companyForm' that is prefilled with the data from the database. 2. The data in

[jQuery] Re: Reloading contact page in tab - using UI.TABS

2008-01-25 Thread carvingcode
Thanks, Klaus. Will give this a try. -- Randy

[jQuery] Tabs stopped working in IE

2008-01-25 Thread carvingcode
My tabs (using UI.TABS) stopped working in IE6 yesterday. There was some formatting problems, but the tabs worked until yesterday. I'm using the stock flora CSS package with additional CSS loaded from main.css. I've trued to find the IE-specified .css file mentioned in other postings here, but

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Karl Swedberg
Wow, Michael, that is gorgeous! Very smooth. Haven't looked at the code yet, but the presentation is outstanding. Fantastic work! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 25, 2008, at 4:45 AM, mjijackson wrote: Hello all, I'm putting

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Jean
=O killerrr! On Jan 25, 2008 1:26 PM, Karl Swedberg [EMAIL PROTECTED] wrote: Wow, Michael, that is gorgeous! Very smooth. Haven't looked at the code yet, but the presentation is outstanding. Fantastic work! --Karl _ Karl Swedberg www.englishrules.com

[jQuery] Masked Input Optional Characters

2008-01-25 Thread Jason Levine
Is there any way to have a Masked Input have optional characters? For example, if I have a month field, I would want to allow 01, 02, 03, etc, but also 1, 2, 3, etc. If I define the mask as 99, then it blanks out the field if the leading zero isn't added. I even tried defining my own

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Rey Bango
Absolutely great work Michael. And I love the fact that it's lib agnostic. Rey,,... mjijackson wrote: Hello all, I'm putting the finishing touches on a media viewer application that I coded up recently (think Thickbox). It can be used with jQuery or any other library. I created an adapter

[jQuery] Re: [validate] using a different tag than label for error messages

2008-01-25 Thread Jörn Zaefferer
Dave Stewart schrieb: But unless I'm mistaken, it's missing from the validation options documentation! No, you're not. Gonna fix that, good catch! Jörn

[jQuery] Re: using a different tag than label for error messages

2008-01-25 Thread MorningZ
On Jan 25, 4:24 am, Dave Stewart [EMAIL PROTECTED] wrote: Hi MorningZ, I just did some quick Googling on the matter, and turned up this useful link: http://www.456bereastreet.com/archive/200711/use_the_label_element_to... I just had to laugh at this line in that link: I always use and

[jQuery] Re: ajax variable scope (?) problem

2008-01-25 Thread [EMAIL PROTECTED]
It was that simple, thank you!

[jQuery] replaceWith -- Use with Classes

2008-01-25 Thread vanoosterhout
I know this may be a pretty elementary question, but I am trying to figure out how to change a class based on a click. I think should be able to do this with replaceWith, but for some reason I am struggling. I have this: li id=st1 class=current1.Boat Select/li li id=st2 class=2.Halyard

[jQuery] Re: jQuery, AJAH IE 7

2008-01-25 Thread Vlad Mazek
Ok, I made it a whole lot simpler, hopefully someone can point me to the mistake I am making: http://support.ownwebnow.com/test.php This form uses jQuery form plugin to put the result of the submission (to test1.php) into companyForm div. Works great. test1.php returns a form, which also uses

[jQuery] Re: How do I stop the form control (but not the label) itself receiving the error class

2008-01-25 Thread Dave Stewart
Great stuff! In the meantime I'm looking forward to learning even more about your fabulous, time-saving plugin. Cheers! Dave

[jQuery] Re: keeping header at the top of page

2008-01-25 Thread Su
On Jan 24, 2008 10:30 PM, robing [EMAIL PROTECTED] wrote: i have been asked to build a template that has a div block that contains a header image and nav that needs to stay visible at the top of the screen even when the user scrolls down the page. i know this can be done in frames but i would

[jQuery] slideToggle weirdness - also Easing question

2008-01-25 Thread Rus Miller
I just moved over to jQuery yesterday and I'm trying to port my Mootools slide code. The Mootools slide was very smooth but I like jQuery's syntax and philosophy better. I was comparing Interface.SlideToggleUp (http://interface.eyecon.ro/ docs/fx) and jQuery.slideToggle

[jQuery] Re: jQuery Firefox vs IE Problem

2008-01-25 Thread Jean-Etienne LaVallee
This is a known JQuery bug... This has to do with FF rendering tables compliant to the CSS2 spec for display:... in FF table, tr, and td are given display values of table, table-row, and table-cell respectively. In IE they all get block. JQuery's show/hide animation methods switch display:

[jQuery] Re: howto properly rebind hover

2008-01-25 Thread h0tzen
in the current jquery-version 1.2 you have to unbind mouseenter and mouseleave. code this.table.find(' tbody tr').unbind('hover').unbind('mouseenter').unbind('mouseleave').removeClass('gt- hover') /code

[jQuery] Re: Quick simple syntax question.

2008-01-25 Thread Pickledegg
It certainly does, thanks very much Alexandre, makes sense now :) On Jan 24, 12:47 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: in that particular bit of code, it's useless (since he did not use it :) ). but let me point you to an example where passing the event to the function is

[jQuery] Re: Is there a .new() ?

2008-01-25 Thread Matt Quackenbush
David, Thanks for the reply. I had no idea that a new element could be created as you've shown. That's pretty cool, from a code standpoint. But if it's faster the way I've been doing it, I'll continue in that fashion. Matt

[jQuery] Re: Is there a .new() ?

2008-01-25 Thread David Serduke
How about $(input type='hidden'/).attr({id:myid, name:myname}).val(foo).appendTo(this); I think that would work although the way you have it would be faster. Most elements you could just say $(div/) to create a new one but in IE the input requires the type be set. So you have to specify the

[jQuery] tableSorter2.0 help needed!

2008-01-25 Thread alex
Hi I am planning to use the tableSorter 2.0 plugin by But just wondering if there is a way to do the following with this: Right now once we have tableSorter set up...we can toggle the columns. click once do asc, click again do desc. But I want the user to be able to just click either up arrow

[jQuery] tableSorter 2.0 help needed

2008-01-25 Thread Bhaarat Sharma
Hi I am planning to use the tableSorter 2.0 plugin by But just wondering if there is a way to do the following with this: Right now once we have tableSorter set up...we can toggle the columns. click once do asc, click again do desc. But I want the user to be able to just click either up arrow

[jQuery] json and ajax error

2008-01-25 Thread Sebastián V. Würtz
How i can handle with jquery the uncaught exception: [object Object] firefox message when no response (json in this case) is recived? My problem is that all the rest of the script stop work! This is part of the script $.ajax({ url: weather.php, action:

[jQuery] Re: Announce: clueTip Plugin update (0.9.5)

2008-01-25 Thread Rick Faircloth
That looks great! Thanks, Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Friday, January 25, 2008 4:44 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Announce: clueTip Plugin update (0.9.5) Hey

[jQuery] Re: jQuery Cycle Plugin help needed

2008-01-25 Thread Mike Alsup
image and have it say 'read article ' and a user could click it. then when the image fades, the link does also, until the next image fades in, with it's own text link to its own article. i'm not having much luck since i need to write each link it's own class in the stylesheet because they

[jQuery] Re: ui_tabs and form plugin: conflict in IE 6.

2008-01-25 Thread carvingcode
the procedure I mentioned above works fine in FF, but does not in IE. The submit event is not passed at all. I've tried to implement Klaus' suggestion, but so far have not had success.

[jQuery] Re: $(this) and bind()? Noobish questions...

2008-01-25 Thread Josh Nathanson
$(this).find(.thumb).animate({ height: 50px }, fast); Another way is to use the context argument of jQuery: $(.thumb, this); I believe this will actually be more performant because it only uses one call to jQuery rather than two. -- Josh

[jQuery] Re: JQuery ThickBox not working in IE

2008-01-25 Thread Liming
never mind. I had a type in my modified .js. thanks. On Jan 25, 1:52 pm, Liming [EMAIL PROTECTED] wrote: Hey guys, I'm not sure what I did wrong. I'm using the thickbox IFrame method, but it's not doing anything in IE but works in firefox. here is my link a id=MyProfile

[jQuery] Re: $(this) and bind()? Noobish questions...

2008-01-25 Thread Micky Hulse
Hi Matt and Tobaco, thanks for the quick replies -- I really appreciate the help! :) Both of your replies have been very helpful. Thanks! Have a great day! Cheers, Micky On Jan 24, 7:54 pm, Micky Hulse [EMAIL PROTECTED] wrote: Hi, Two quick questions: - 01. $(.item).hover(

[jQuery] jQuery + MS Access Database

2008-01-25 Thread Jesslyn
I have been searching for tutorials or examples that allow a website to pull information from an Access database using jQuery or Ajax. So far my search has been unsuccessful and there is probably a good reason for that. I'd first like to know if this is even doable and if so are there any

[jQuery] Re: Tabs stopped working in IE

2008-01-25 Thread Christoph Haas
On Fri, Jan 25, 2008 at 05:39:29AM -0800, Klaus Hartl wrote: On Jan 25, 1:22 pm, carvingcode [EMAIL PROTECTED] wrote: My tabs (using UI.TABS) stopped working in IE6 yesterday.  There was some formatting problems, but the tabs worked until yesterday. I'm using the stock flora CSS package

[jQuery] Re: Can't get new Shadowbox plug-in to work. :o(

2008-01-25 Thread Rick Faircloth
Well… you were spot on, Mike. That was enough to stop the plug-in dead in its tracks. I thought about that but didn’t try it first… :o/ Thanks, Mike! Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Friday, January 25, 2008 2:35 PM

[jQuery] Announce: clueTip Plugin update (0.9.5)

2008-01-25 Thread Karl Swedberg
Hi everyone, Wanted to let you know that I released a new version (0.9.5) of the clueTip plugin at http://plugins.jquery.com/project/cluetip/ Here is a list of the changes since the last release: * added clickThrough option to allow click to go to page, even if href and tipAttribute are

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Sean Catchpole
Awesome work Michael. I love the title font, excellent choice. Glad to see it's library independent. ~Sean On Jan 25, 2008 3:45 AM, mjijackson [EMAIL PROTECTED] wrote: Hello all, I'm putting the finishing touches on a media viewer application that I coded up recently (think Thickbox). It

[jQuery] Re: Can't get new Shadowbox plug-in to work. :o(

2008-01-25 Thread Mike Alsup
The only part that strays from the demo is what I've wrapped the a tag around... a div I already had on the page with an image placed in its background via CSS. But I really don't see why that would matter Well, it makes the markup invalid for starters.

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Rey Bango
Get working on it Klaus! :D Klaus Hartl wrote: On Jan 25, 10:45 am, mjijackson [EMAIL PROTECTED] wrote: Hello all, I'm putting the finishing touches on a media viewer application that I coded up recently (think Thickbox). It can be used with jQuery or any other library. I created an adapter

[jQuery] Can't get new Shadowbox plug-in to work. :o(

2008-01-25 Thread Rick Faircloth
Hi, all. I just had to try out the new Shadowbox plug-in that Michael just introduced. I tried on a site I'm working on, but can't get any response and can't see what I'm doing wrong. Firebug returns no errors. The only part that strays from the demo is what I've wrapped the a tag around... a

[jQuery] Using JSONP With the AIM Presence Service

2008-01-25 Thread Chris Scott
If anyone wants to use jQuery to get the presence information from AIM for a user, I documented it here: http://www.iamzed.com/2008/01/25/using-jquery-and-jsonp-to-get-aim-status/ Nothing revolutionary, but the JSONP callback stuff threw me for a while. -- Chris Scott Adaptive Hosting

[jQuery] Re: Livequery Toggle for newly added row

2008-01-25 Thread Mang
Thanks a ton, your solution is working great. The final code I'm using is below. $(document).ready(function(){ //an add button at the bottom of my tblFormulary table ads a new row, incrementing the input fields name and ids $(input:[EMAIL PROTECTED]'Add_Row']).click(function () { var

[jQuery] Re: Superfish

2008-01-25 Thread BFTech
Well, unfortunatly we only have it up on an interanl site for testing right now, but I'll move some stuff around, and let you know when its up. Thanks again BFTech

[jQuery] Re: Multiple jCarousel 's on one page

2008-01-25 Thread Josh V
hi. On Dec 19 2007, 3:02 pm, Josh V [EMAIL PROTECTED] wrote: help. On Nov 30, 4:55 pm, Josh V [EMAIL PROTECTED] wrote: anybody? On Nov 29, 5:03 pm, Josh V [EMAIL PROTECTED] wrote: hi. i have a site where i need two different carousels on the same page. each carousel has a

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Penner, Matthew
Wow! This is great! Good jo! Matt Penner Database Engineer II GIS Support [EMAIL PROTECTED] (951) 940-6108 x10709 -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mjijackson Sent: Friday, January 25, 2008 1:45 AM To: jQuery (English) Subject:

[jQuery] Re: jQuery 1.2.2 compressed to 14.3KB

2008-01-25 Thread Eric Martin
On Jan 25, 6:01 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: arf my bad, good catch karl :) , indeed i meant the packed version ! And then i guess whatever's gzipped still needs to be uncompressed by the browser which means it has a sensible influence on the performance of low specs

[jQuery] Re: howto properly rebind hover

2008-01-25 Thread h0tzen
anyone any hint please? at least a comment if this *should* work?

[jQuery] Re: How do I stop the form control (but not the label) itself receiving the error class

2008-01-25 Thread Jörn Zaefferer
Jörn Zaefferer schrieb: Dave Stewart schrieb: Jörn, highlight does exactly what I want if I pass it an empty function, so that's great. How about adding the option to pass null or false for those times when you want to do nothing and just let the the error message take the strain? Makes

[jQuery] Re: Safari onload firing

2008-01-25 Thread polyrhythmic
Perhaps the jQuery elementReady plugin will help? I don't have experience with it in Safari, however. http://www.thunderguy.com/semicolon/2007/08/14/elementready-jquery-plugin/ Charles On Jan 24, 5:48 pm, Thame [EMAIL PROTECTED] wrote: This is my first post to the list, so please excuse any

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Rey Bango
Great work Michael: http://ajaxian.com/archives/library-agnostic-lightbox Rey mjijackson wrote: Hello all, I'm putting the finishing touches on a media viewer application that I coded up recently (think Thickbox). It can be used with jQuery or any other library. I created an adapter for

[jQuery] Re: is it a bug with validate?

2008-01-25 Thread Jörn Zaefferer
Jacky schrieb: Hi, I valiate two fields that depend on each other if blank,for example,user must supply he/her telephone number or mobile number,he/ her just need input the one of that(telephone number or mobile number). I set the rules like this: rules:{ telephone:{

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Rick Faircloth
I may use this on the real estate sites that I'm working on, because I wanted a viewer that would allow large images to be displayed using maximum space allowed by the viewport of the browser. Your plug-in seems to accommodate that requirement. One thing I didn't notice that I would really love

[jQuery] ajaxContent v.2.1 with extends and bindings

2008-01-25 Thread [EMAIL PROTECTED]
I have now uploaded the new version of the ajaxContent jquery plugin. The release gives to the plugin many new options and funcionality. A new beforeSend callback is now available and fires just before the ajax call is performed The plugin now can extend the ajax event to items injected in the

[jQuery] learning jQuery

2008-01-25 Thread tlob
I successfully implemented a simple drop down selection. Question: 1) If I change $(#tl,#ch,#sg,#mt).hide(); to $(#tl,#ch,#sg,#mt).fadeOut(); I end up with a nasty blinker effect, because the new image fades out while the new one fades in. How can I can this? 2) Is it clean to let the option

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Alexandre Plennevaux
Michael, this is indeed GORGEOUS is the word. Fantastic, i bet in one month we'll see this one everywhere. -- Original Message -- To: Jquery-en (jquery-en@googlegroups.com) From: Karl Swedberg ([EMAIL PROTECTED]) Subject: [jQuery] Re: Shadowbox Media Viewer Date: 25/1/2008

[jQuery] jquery xml help

2008-01-25 Thread Alexandre Plennevaux
Hello again, gosh this should be so easy yet i can't make it work. Here is what i'm trying to do: i have a data structure stored as an xml file. I need to load this structure once at the start of the application. I need a function to search through this data structure and return the

[jQuery] Re: ajax variable scope (?) problem

2008-01-25 Thread Alexandre Plennevaux
i wonder if you shouldn't make sure you reinitiate the variable, so use var before: $('a.deletepm').click(function(){ var id = $(this).attr('id'); ... On Jan 25, 2008 1:56 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I have the following problem. I have a page with several links

[jQuery] Re: Selecting listboxes that are in a table

2008-01-25 Thread MorningZ
$(#ColumnEdit select) Worked... thanks That said, I'm surprised #ColumnEdit tr td select did not return any matches As was I and the select boxes have options defined, i was just shorthanding the code for brevity's sake in my original post On Jan 25, 3:03 am, George [EMAIL

[jQuery] Re: tableSorter question: how to disable the last header?

2008-01-25 Thread [EMAIL PROTECTED]
Hi. I tried to use Widget or variable but without result. Than i edit table sorter plugin. It is very easy. In buildHeaders method after $tableHeaders = $(thead th,table); add this // set negative numbers like positive totalCols =

[jQuery] Re: jQuery 1.2.2 compressed to 14.3KB

2008-01-25 Thread Alexandre Plennevaux
arf my bad, good catch karl :) , indeed i meant the packed version ! And then i guess whatever's gzipped still needs to be uncompressed by the browser which means it has a sensible influence on the performance of low specs computers , no? On Jan 25, 2008 2:25 PM, Karl Swedberg [EMAIL

[jQuery] Re: Tabs stopped working in IE

2008-01-25 Thread Klaus Hartl
On Jan 25, 1:22 pm, carvingcode [EMAIL PROTECTED] wrote: My tabs (using UI.TABS) stopped working in IE6 yesterday.  There was some formatting problems, but the tabs worked until yesterday. I'm using the stock flora CSS package with additional CSS loaded from main.css.  I've trued to find the

[jQuery] Re: jQuery Cycle Plugin help needed

2008-01-25 Thread visitorQ
thanks mike i'll try that and get back to you guys! you're all great On Jan 25, 3:40 pm, Mike Alsup [EMAIL PROTECTED] wrote: image and have it say 'read article ' and a user could click it. then when the image fades, the link does also, until the next image fades in, with it's own text

[jQuery] Re: replaceWith -- Use with Classes

2008-01-25 Thread vanoosterhout
Thanks Karl, Perfect. Worked like charm. Christopher On Jan 25, 2:03 pm, Karl Swedberg [EMAIL PROTECTED] wrote: I can't build the whole thing for you because I don't know what is   being clicked and which element's class you want changed, but in   general you can manipulate classes with

[jQuery] Using ScrollTo to Scroll to DIV and center it in thw window

2008-01-25 Thread Keith
I would like to have a navigation in my DIV's that allows me to jump around to other DIV's placed around the screen. Right now here is what I have using ScrollTo: http://www.keithmuth.net/jquery/ I would like to keep the DIV's centered in the screens at all times, whether you jump to it through

[jQuery] Re: jQuery Cycle Plugin help needed

2008-01-25 Thread visitorQ
yeah thanks to mike for a friggin awesome plugin! i'm glad you liked checking out the labradoodles! this site is for a friend of mine. they sold tiger woods his labradoodle! awesome huh? they're beautiful dogs. anyway, i'm having one more little issue. everything works GREAT, but i want to add

[jQuery] problem with .attr(alt);

2008-01-25 Thread tsr
Hi, I'm trying to create a dynamic rollover effect for a client, but I just can't get my code to work, don't really know why. Here it is: 1 $(a.menu-text).hover ( 2 function() { 3 var titleStr =

[jQuery] Re: Announce: clueTip Plugin update (0.9.5)

2008-01-25 Thread Rick Faircloth
Hi, Karl... Got an example of the experimental mouse tracking option online? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Friday, January 25, 2008 3:09 PM To: jquery-en@googlegroups.com Subject: [jQuery]

[jQuery] Re: JQuery ThickBox not working in IE

2008-01-25 Thread Liming
never mind. I had a typo in my modified .js. Thanks. On Jan 25, 1:52 pm, Liming [EMAIL PROTECTED] wrote: Hey guys, I'm not sure what I did wrong. I'm using the thickbox IFrame method, but it's not doing anything in IE but works in firefox. here is my link a id=MyProfile

[jQuery] Re: Scrollable image in a div

2008-01-25 Thread pete higgins
Not offhand. In theory, mouse down triggers the bind(mousemove) and mouse up unbind's it, so you should not be seeing that behavior. There is a small typo in the args/invert checking above, i randomly added after pasting my test page into the email. var invert = (args ? (args.invert || false) :

[jQuery] Re: validationaide issue

2008-01-25 Thread Eridius
Is there any validation script that does allow it? Eridius wrote: I am trying to find a way to use validation aide for this form but having issues. Basically this form is not going to post to another page, I need it to do a .load to another page and then replace the form with the return

[jQuery] Re: re[jQuery] placeWith -- Use with Classes

2008-01-25 Thread rolfsf
and when dealing with multiple classes on the same element, I've found it necessary at times to use: .attr('class' , 'class-name1 class-name2') where .class-name1 typically doesn't change, but .class-name2 might be any one of 5 or 6 different classes. Rather than trying to figure out which one

[jQuery] Re: Back Button Clears Form

2008-01-25 Thread cfdvlpr
the history remote plugin might be what you need. On Jan 25, 5:42 am, Jamie [EMAIL PROTECTED] wrote: Hey, After starting to use jQuery, I've found the back button on my browser no longer remembers the values in my forms. The user has to re-enter everything if they accidentally move past a

[jQuery] Re: jQuery Cycle Plugin help needed

2008-01-25 Thread Karl Swedberg
On Jan 25, 2008, at 1:24 AM, visitorQ wrote: i am however having one other problem. before the slideshow worked, i had a dropdown menu on my navbar. but now with the slideshow over it, you can't see the dropdown when you rollover the navbar. sooo, i kinda need the navbar. what do you guys

[jQuery] Re: jQuery 1.2.2 compressed to 14.3KB

2008-01-25 Thread Karl Swedberg
Hi Alexandre, By gzip version, do you mean the packed/obfuscated version? Since gzip is done on the server, it can compress the full jquery, the minified, or the packed. --Karl On Jan 25, 2008, at 2:58 AM, Alexandre Plennevaux wrote: if you gzip compress your file, then you lose a

[jQuery] Re: replaceWith -- Use with Classes

2008-01-25 Thread Karl Swedberg
I can't build the whole thing for you because I don't know what is being clicked and which element's class you want changed, but in general you can manipulate classes with .addClass('some-class') and .removeClass('optional-class-name') and .toggleClass('some-class'). You'll find these

[jQuery] JQuery ThickBox not working in IE

2008-01-25 Thread Liming
Hey guys, I'm not sure what I did wrong. I'm using the thickbox IFrame method, but it's not doing anything in IE but works in firefox. here is my link a id=MyProfile href=preference.aspx? KeepThis=trueTB_iframe=trueheight=400width=600modal=true class=thickboxMy Profile/a anything i'm missing?

[jQuery] Re: Using JSONP With the AIM Presence Service

2008-01-25 Thread Benjamin Sterling
Great info Chris, thanks for sharing. On 1/25/08, Chris Scott [EMAIL PROTECTED] wrote: If anyone wants to use jQuery to get the presence information from AIM for a user, I documented it here: http://www.iamzed.com/2008/01/25/using-jquery-and-jsonp-to-get-aim-status/ Nothing revolutionary,

[jQuery] $.post is not a function

2008-01-25 Thread jackpark
I have jquery.js loaded (visible in firebug) I have editor.js loaded (visible in firebug) after jquery.js Here is the code: function (){ this.content = this.getContent(); $.post(updateStandardsCell, {key: formatPOST(this.sid), content:

[jQuery] $.ajax question

2008-01-25 Thread Alexandre Plennevaux
hi friends, i have a question: i call several times a function in which there is an ajax cal, which, when succesfull, performs a search in the loaded data and return the result/. Will the ajax call (the client/server communication) be performed each time, or will it use the cache and just

[jQuery] Re: jQuery Cycle Plugin help needed

2008-01-25 Thread visitorQ
KARL!! thank you so much! that worked perfectly man! thank you!! i'm thining about adding the paging slideshow instead of this one in the future. i'll be back if i have any problems! you guys are the best!!! woohoo we're cookin now!!! =) On Jan 25, 7:23 am, Karl Swedberg [EMAIL PROTECTED]

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Michael J. I. Jackson
Rick, That is an excellent idea! Hadn't thought of that one. You've got the wheels inside my head turning now... ;) Michael On Jan 25, 2008, at 9:03 AM, Rick Faircloth wrote: I may use this on the real estate sites that I'm working on, because I wanted a viewer that would allow large

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Michael J. I. Jackson
Thanks Rey! Wow...I hope my new little blog can handle all the traffic. ;) Michael On Jan 25, 2008, at 9:50 AM, Rey Bango wrote: Great work Michael: http://ajaxian.com/archives/library-agnostic-lightbox Rey mjijackson wrote: Hello all, I'm putting the finishing touches on a media

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Jörn Zaefferer
mjijackson schrieb: Hello all, I'm putting the finishing touches on a media viewer application that I coded up recently (think Thickbox). It can be used with jQuery or any other library. I created an adapter for jQuery, and I thought that somebody on this list might be interested.

[jQuery] ajax variable scope (?) problem

2008-01-25 Thread [EMAIL PROTECTED]
Hi, I have the following problem. I have a page with several links with class deletepm, and when I click on the links in a very quick sequence, the following happens: deleting 3 deleting 4 deleting 5 5 deleted 5 deleted 5 deleted Here's the code: $('a.deletepm').click(function(){ id =

[jQuery] Problems with frames

2008-01-25 Thread Androrion
Hi all, I'm currently working on a static website using some javascript effects. So far i'm very impressed by the possibilities offered by jQuery and that's why i chose this framework, but now i have a little problem. The web site i wanna create is very classic : a header, a footer, a side-bar

[jQuery] Reverse Ajax in jQuery

2008-01-25 Thread Jamie
Hey, Has anyone ever tried any reverse ajax solution using jQuery? I have a slow-loading ajax call and would like the server to send back status updates through the open HTML connection. Does anyone know how I could gain access to the server response data as in comes in, rather than at the

[jQuery] Re: learning jQuery

2008-01-25 Thread Eric Martin
On Jan 25, 7:45 am, tlob [EMAIL PROTECTED] wrote: I successfully implemented a simple drop down selection. Question: 1) If I change $(#tl,#ch,#sg,#mt).hide(); to $(#tl,#ch,#sg,#mt).fadeOut(); I end up with a nasty blinker effect, because the new image fades out while the new one fades

[jQuery] [JCarousel] Smooth scroll, CSS, and wrap to first?

2008-01-25 Thread [EMAIL PROTECTED]
I am looking for a solution where I can have images scroll and JCarousel pretty much hits the nail on the head but I'm struggling with a couple of things. I want it to constantly scroll images but there is always a pause after a scroll. I am wondering if that pause can be removed so it's just a

[jQuery] Re: Shadowbox Media Viewer

2008-01-25 Thread Klaus Hartl
On Jan 25, 10:45 am, mjijackson [EMAIL PROTECTED] wrote: Hello all, I'm putting the finishing touches on a media viewer application that I coded up recently (think Thickbox). It can be used with jQuery or any other library. I created an adapter for jQuery, and I thought that somebody on

  1   2   >