[jQuery] Re: [OT] Massive List of User Agents

2007-07-20 Thread Tane Piper
If you want to play about with user agents, this plugin for FF does the trick http://addons.mozilla.org/en-US/firefox/addon/59 It allows you to change the user agent as reported OS on the fly. Stehphan - I'm not sure if it would work - but try out the Firebug mini-debug server. It was

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-20 Thread Christian Bach
2007/7/19, Kia [EMAIL PROTECTED]: Personally I would prefer if the string wasn't lowercased. I think the parser should lowercase it (or use the regexp modifier 'i'), if needed. I will change this in time for the final release. /christian

[jQuery] Re: changing the value of a global variable inside an post callback function?

2007-07-20 Thread Rob Desbois
I've just spotted it after debugging it in Firebug. Anything which requires having a response for it to execute correctly, must be in the response-handling function. This is behaving exactly as required - the request is asynchronous, and you cannot guarantee that it will execute after the code

[jQuery] Re: Find missing HTML tags

2007-07-20 Thread Rob Desbois
How about stripping tags and showing 30 characters of unformatted text? It's quite a common thing to do for displaying summaries and would solve the problem instead of just fixing the symptoms. --rob On 7/19/07, Shawn Tumey [EMAIL PROTECTED] wrote: If the the content is being fetched using

[jQuery] Error in IE 5.5 / jQuery 1.1.3.1 - 'nodeName' is Null

2007-07-20 Thread bjb
Hi, I just upgraded from 1.2 to 1.1.3.1 (compressed version) Everything works fine, but in IE 5.5 there seems to be a problem with the new version: It says: 'nodeName' is Null or no Object, line 185 best ragards Bernd -- View this message in context:

[jQuery] Re: DatePicker | adding multiple selectedDates into input field

2007-07-20 Thread newbie
Figured it out! - At this part - console.log(selectedDates); - Just add... - console.log(selectedDates); $(this).val(selectedDates); However the only remaining issue is now I get very long dates. I get this: Fri

[jQuery] Re: DatePicker | adding multiple selectedDates into input field

2007-07-20 Thread newbie
I have fixed the issue Solution At this line: console.log(selectedDates); Just add: console.log(selectedDates); (this).val(selectedDates); This will add the array of multiple dates back into text field. New problem --- How can I get rid of the rather

[jQuery] jquery trunk stable?

2007-07-20 Thread Jeremy Dunck
I'm just getting started w/ jQuery, and have heard rumors that $('document').ready has some issues with a) IE and/or b) document.write. The Events doc doesn't note any limitations. I see #1251, #1319 are related, as well as [2332]. .ready() is pretty important to me, and I'm unfortunately

[jQuery] Re: easing - only use one function

2007-07-20 Thread Kia Niskavaara
Thanks! That solved it. John Resig wrote: What if you just do this instead? jQuery.easing.bounceout = function(x, t, b, c, d) { if ((t/=d) (1/2.75)) { return c*(7.5625*t*t) + b; } else if (t (2/2.75)) {

[jQuery] Session problems

2007-07-20 Thread Oscar esp
I have a App devoloped with asp jQuery. I have a strange behaviour with the session. Some times dissapear. I don't have a pattern to reproduce it... I would like if anyone has had problems with session using ajax calls... in order to determinate if it is a problem related with ajax calls or

[jQuery] Re: changing the value of a global variable inside an post callback function?

2007-07-20 Thread bdee1
thanks for getting back to me. problem is that i am not sure if i can do all the processing i need in the callback function. because on my form i have onsubmit=javascript:return validateForm(this) so it calls my validateForm function and if the validateform function returns true, the form

[jQuery] Re: [ANNOUNCE] jQuery Accessibility Plugin

2007-07-20 Thread Alexandre Plennevaux
Hi Tane, It's a great idea ! I tested it on windows XP SP2 and FF 2.0.0.5: works fine! But with internet explorer 7, it does not work: the div does not appear. Hope this helps, alex -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tane

[jQuery] [ANNOUNCE] jQuery Accessibility Plugin

2007-07-20 Thread Tane Piper
Hi Folks, Today I am happy to release my second plugin for jQuery - the jQuery Accessibility Plugin. Code: http://code.google.com/p/ability/ Demo: http://webrocket.ulmb.com/ability/ This plugin takes a div that you pass in, and adds the additional HTML required for the buttons:

[jQuery] Re: DatePicker | adding multiple selectedDates into input field

2007-07-20 Thread Kelvin Luck
Hi, Try something like this: var datesString = ''; for (var i=0; iselectedDates.length; i++) { datesString += selectedDates[i].asString() + ', '; } datesString = datesString.substring(-2); $(this).val = datesString; Untested but should give you an idea of how to proceed, Cheers,

[jQuery] Re: Session problems

2007-07-20 Thread Jacques Jocelyn
Would you have a sample of code where you're seeing the issue ? are you referring to the Server session ? Jacques On Jul 20, 1:00 pm, Oscar esp [EMAIL PROTECTED] wrote: I have a App devoloped with asp jQuery. I have a strange behaviour with the session. Some times dissapear. I don't have a

[jQuery] Re: [ANNOUNCE] jQuery Accessibility Plugin

2007-07-20 Thread Tane Piper
Hmm, I tested it on IE 7 and it worked fine, are you getting any errors? On 7/20/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Hi Tane, It's a great idea ! I tested it on windows XP SP2 and FF 2.0.0.5: works fine! But with internet explorer 7, it does not work: the div does not appear.

[jQuery] Re: Blockui problem

2007-07-20 Thread Anthony Leboeuf(Worcester Wide Web)
Can I not use blockui within another function? Anthony Leboeuf(Worcester Wide Web) wrote: Hello everyone, Im having a bit of trouble using blockui. I've added the plugin here http://pioneer.dlg360.com/order/index.php?act=viewProdproductId=2678

[jQuery] Re: RjQuery Accordion menu

2007-07-20 Thread Jörn Zaefferer
On Jul 19, 10:31 pm, Mitchell Waite [EMAIL PROTECTED] wrote: You are correct, I prefer Adobe's approach. Actually I have seen more accordions like Adobe's then Joern's accordian control but I would love to find a way around using SPRY because as good as it is, it's not easy to manipulate

[jQuery] Re: jquery trunk stable?

2007-07-20 Thread John Resig
As far as I can tell [2332] may have fixed #1251, but I haven't had the opportunity to test it yet. And as far as #1319 goes, I haven't been able to duplicate it at all. You can give a nightly a try, but there shouldn't be any significant issues (even the aforementioned issues are rather

[jQuery] select by onclick text

2007-07-20 Thread seedy
I am trying to select all submit, or image buttons on my form that contain a javascript confirm function. The following seem to both return the same thing, any hints? $('form :image') -returns all image buttons, as expected $('form :[EMAIL PROTECTED] :contains(confirm)]') -also returns all

[jQuery] Re: [ANNOUNCE] jQuery Accessibility Plugin

2007-07-20 Thread Alexandre Plennevaux
Taner, again this is a great and very useful plugin that eases the work of webdevelopers to include such functionalities in a minimum amount of time. Yet as you mention, it goes beyond a javascript plugin to fully enforce accessibility standards as accessibility must be enforced first and

[jQuery] Re: Should be real easy but not for me

2007-07-20 Thread Glen Lipka
Im a little confused. SlideInRight and SlideOutRight arent jQuery functions. Are these from a plugin you made? Best thing is to post a simple proof-of-concept page. then we can help you debug it. Glen On 7/19/07, Goofy [EMAIL PROTECTED] wrote: Why wont this work. Its so simple. I just

[jQuery] Proud Daddy's First Pic

2007-07-20 Thread Rey Bango
John Resig is a proud daddy: http://flickr.com/photos/jeresig/859737702/ Rey...

[jQuery] Re: Removing table rows on delete not working correctly

2007-07-20 Thread Tane Piper
Hmm, probably very ugly hackish but I found a solution (i always tend to AFTER posting here): $j('a.delete').bind('click', function(){ var deletelink = this; var deleteid = $(deletelink).attr('id'); var x=window.confirm(Are you sure you want to

[jQuery] Re: [ANNOUNCE] jQuery Accessibility Plugin

2007-07-20 Thread Ganeshji Marwaha
Good work Tane, this is a good start... -GTG On 7/20/07, Klaus Hartl [EMAIL PROTECTED] wrote: Nicolas Hoizey wrote: Hello, Today I am happy to release my second plugin for jQuery - the jQuery Accessibility Plugin. IMHO, accessibility is something you have to deal with before

[jQuery] Form Validation by generic class name

2007-07-20 Thread craveytrain
I have been using jQuery for a couple months and have been looking to use it as a common library for all my company's applications. I have also been evaluating the form validator plugin. I am trying to replace the JS validation library we have now with it. However, I can't figure out how to set

[jQuery] name is...

2007-07-20 Thread Terry B
found i, fyi, the name is dragHelper

[jQuery] Loading Javascript Dynamically (in other words, as needed)

2007-07-20 Thread Chrisss
Hello, I was wondering if jQuery can be used to load javascript dynamically, on an as-needed basis. Here is the problem I have: I want to load a page with as little javascript as possible. When someone clicks on an item that requires some javascript functionality, I want it to load a javascript

[jQuery] Re: Solving the Back button problem

2007-07-20 Thread Terry B
or expire the page if you do not want them to ever use the back button On Jul 19, 10:23 pm, Karl Rudd [EMAIL PROTECTED] wrote: Perhaps try setting a cookie the first time the page is loaded. Then check each time the page is loaded for the cookie. Karl Rudd On 7/19/07, S. Robert James

[jQuery] Re: Click to call a fuction?

2007-07-20 Thread Mitchell Waite
Andy I know that was a dumb question but I really appreciate your help. There is this entire body of knowledge that jQuery assumes that is really not covered in any of the docs. Can I pass parameters to the function with this ID approach? From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: select by onclick text

2007-07-20 Thread seedy
that doesn't seem to be working for me nor does $('form :image').find('[EMAIL PROTECTED] :contains(confirm)]') I am using jquery 1.1.3.1 if that is what you mean by latest version Glen Lipka wrote: I think with the latest version you can say $('form :[EMAIL PROTECTED]') Glen --

[jQuery] Re: repeated click when using .show(slow)

2007-07-20 Thread mmjaeger
nobody able to answer this? I really like to know whether I'm doing something wrong here. sorry for bumping. On Jul 17, 5:43 pm, mmjaeger [EMAIL PROTECTED] wrote: Hello, I've a link I'm using .show(slow) - it works fine unless I click repeatedly fast on the link - re-clicking the link while

[jQuery] Re: A jQuery success story

2007-07-20 Thread Ganeshji Marwaha
That is good news and BTW a heart-touching story -GTG On 7/20/07, Brandon Aaron [EMAIL PROTECTED] wrote: Excellent! Be sure and ping the list if you need any help with the presentation. I believe there are several people on the list who have recently given a similar presentation to their

[jQuery] Re: Click to call a fuction?

2007-07-20 Thread Goofy
What happens if you already have some 3rd party class on the image like this: img src=images/Advanced Search Glossy_WIDE.jpg class=glossy iradius50 alt= / If I add an ID the click never gets fired img src=images/Advanced Search Glossy_WIDE.jpg id=PanelOpenGlossy class=glossy iradius50 alt= /

[jQuery] Re: Resizable Div with Shadow Effect?

2007-07-20 Thread cfdvlpr
That plugin was exactly what I needed (.outerHeight() works beautifully) thanks again!

[jQuery] Re: Resizable Div with Shadow Effect?

2007-07-20 Thread cfdvlpr
That plugin was exactly what I needed (.outerHeight() works beautifully) thanks again! On Jul 19, 4:01 pm, Glen Lipka [EMAIL PROTECTED] wrote: How about the dimensions plugin to get the height of one and set the other? Glen On 7/19/07, cfdvlpr [EMAIL PROTECTED] wrote: I'm having

[jQuery] Re: draggable clone name

2007-07-20 Thread Terry B
fyi, the name is dragHelper On Jul 20, 11:11 am, Terry B [EMAIL PROTECTED] wrote: i am using onDrag to update some info within the dragged div which works but what i really want is to update the info in the clones. how are the clones named, anyone know off-hand? ~Terry

[jQuery] Re: Announce: Confirmer plugin

2007-07-20 Thread Ganeshji Marwaha
On Jul 18, 7:34 am, Ganeshji Marwaha [EMAIL PROTECTED] wrote: Hmmm, just thinking out loud here, did u try attaching a no-op function to window.ondbclick... That's an EXCELLENT idea! Thanks a lot! Doh - i can't believe i didn't think of that before. Perhaps jQ should install a no-op

[jQuery] Re: Click to call a fuction?

2007-07-20 Thread Dan G. Switzer, II
Mitch, The following code would attach a click event to every img tag on the page. When you click the image, you'll get an alert w/a message and the source path to the image. $(img).bind( click, function (){ alert(You clicked an image!\n\n + this.src); }

[jQuery] Long running script IE6, help!

2007-07-20 Thread Josh Nathanson
Hey jQuery'ers, I am having an issue with jQuery in IE6. I have a very large html page coming from the server which also includes the jQuery packed file. When the page is too large, IE6 throws a long running script error; the end user clicks abort script, and havoc ensues with the

[jQuery] Re: Long running script IE6, help!

2007-07-20 Thread Brandon Aaron
Have you tried using the uncompressed version of jQuery? -- Brandon Aaron On 7/20/07, Josh Nathanson [EMAIL PROTECTED] wrote: Hey jQuery'ers, I am having an issue with jQuery in IE6. I have a very large html page coming from the server which also includes the jQuery packed file. When the

[jQuery] Re: select by onclick text

2007-07-20 Thread Glen Lipka
I whipped up a demo http://commadot.com/jquery/selectors/contains.htm I used EACH(). However, I just feel like I am missing something. There has got to be a way to do this without an IF statement. Also, I would remiss not to mention. You shouldn't use onclick=. The goal (imho) is to make the

[jQuery] Re: Click to call a fuction?

2007-07-20 Thread Andy Matthews
You're probably right that your glossy and iradius50 classes are interfering with jQuery code. Have you tried this: $('.glossy').click(function(){ alert('testing'); } Concerning the xPath options that the previous poster mentioned. Let's pretend we have a navbar (id=navigation) with

[jQuery] Re: Announce: Confirmer plugin

2007-07-20 Thread Stephan Beal
On Jul 18, 7:34 am, Ganeshji Marwaha [EMAIL PROTECTED] wrote: Did it work? i just tried it, but it doesn't appear to have an affect - the click() handler appears to take precedence, which actually does make sense because you cannot have a double-click without having a single click. i tried it

[jQuery] Re: Click to call a fuction?

2007-07-20 Thread Glen Lipka
I think there is alot of stuff going on in this thread. Some best practices though: never use ID unless it truly is a 1 time thing. Like 1. A global header 2. A global footer 3. Left nav container. These are things that will never ever have something else like it. Otherwise, always use

[jQuery] Intensive CPU + Animated GIFS

2007-07-20 Thread Josh Bush
I have an intensive operation that occurs in my code, and when it does animated gifs pause their animating. I tried wrapping the offending code in a setTimeout(function(){...},0) with no luck. Right now the basic code looks like this: $(#gif).show(); //#bigtable has 1500 rows 4 columns wide

[jQuery] Re: jQuery jEditable

2007-07-20 Thread Erik Beeson
Your question is about PHP, not jQuery. You'd have better luck on a PHP forum. --Erik On 7/20/07, Aureole [EMAIL PROTECTED] wrote: I'm using the jEditable plugin which can be found here: http://www.appelsiini.net/~tuupola/258/jeditable-in-place-editor-plugin-for-jquery/save.php The

[jQuery] Re: Long running script IE6, help!

2007-07-20 Thread Dan G. Switzer, II
Josh, Just tried the uncompressed, same problem, long running script. Here is a link, PLEASE DON'T CLICK AROUND, just view in IE6 and you'll see the alert. http://www.calabunga.com/main/pagesource.html It's a massive page, over a MB, I'm sure that is part of the problem but how do I rectify?

[jQuery] Re: Long running script IE6, help!

2007-07-20 Thread Dan G. Switzer, II
Josh, Klaus' post is a good example of the specifity I was referring to in my post. Basically writing selectors that are much more specific and allow jQuery to do less parsing work. -Dan Haven't tested in IE but took a quick look at your script. You could speed up your queries if that is the

[jQuery] Re: Long running script IE6, help!

2007-07-20 Thread Josh Nathanson
Hi Dan, Thanks for the info. I'm working on increasing the specificity of the selectors, but it's still too many darn dom elements. There might be 3000 bindings that need to happen. Next step is to do the old fashioned binding right in the html. -- Josh - Original Message -

[jQuery] Re: clueTip updates and new theme

2007-07-20 Thread Karl Swedberg
thanks, Glen and Web Specialist! Glen, great idea for the fadeIn(). I'll see what I can do. By the way, I posted a blog entry for beta 2 last night, with more enhancements/fixes and committed the files to svn: BLOG ENTRY: http://www.learningjquery.com/2007/07/cluetip-plugin-beta-2 SOURCE

[jQuery] Re: Click to call a fuction?

2007-07-20 Thread Michael Geary
From: Dan G. Switzer, II What is this glossy plug-in your using? I have a feeling that plug-in may be changing your images from normal img / HTML tags to something embedded in a canvas / tag or to SVG. If that's the case, then it's definitely going to affect jQuery--because the

[jQuery] Re: Select LIst with Jquery

2007-07-20 Thread Danjojo
I tried the example. In IE7, when I change the Select List to Japanese, the flag in the ID above does not change. If I select English first, then select Japanese the flag will change. What am I missing? I have for JQuery: $(function() { $(#languages).bind('change', function() {

[jQuery] Cookies with JQuery?

2007-07-20 Thread Danjojo
Am I able to set client-side cookies with JQuery? That would be REALLY great!! I could store the Language state in this cookie. $(function() { $(#languages).bind('change', function() { var country = $(this).val(); if(country) {

[jQuery] Re: Select LIst with Jquery

2007-07-20 Thread Danjojo
Ahh the code works fine. The problem seems to be that when shift-refreshing the browser, the selected item in the select list does not reset to the selected option. select id=languages style=width: 100px; option value=trans selected=selectedLanguage/option option

[jQuery] Re: select by onclick text

2007-07-20 Thread seedy
Glen Lipka wrote: I whipped up a demo http://commadot.com/jquery/selectors/contains.htm I used EACH(). However, I just feel like I am missing something. There has got to be a way to do this without an IF statement. I have done something similar, using .each then checking with regex

[jQuery] Re: clueTip updates and new theme

2007-07-20 Thread Danjojo
Amazing work, clue-tips (hyperlink hints), are one of my favorite things to come out of all the changes of late.. I hope to try them out soon.. On Jul 20, 3:07 pm, Glen Lipka [EMAIL PROTECTED] wrote: Right now, I think this is a great plugin. Very easy to set up and useful/usable. Feature

[jQuery] Re: Cookies with JQuery?

2007-07-20 Thread Su
http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/ On 7/20/07, Danjojo [EMAIL PROTECTED] wrote: Am I able to set client-side cookies with JQuery? That would be REALLY great!! I could store the Language state in this cookie. $(function() { $(#languages).bind('change',

[jQuery] Re: A jQuery success story

2007-07-20 Thread Sean Catchpole
A Great Story Michael, thank you. ~Sean

[jQuery] jQuery JSON

2007-07-20 Thread pdp
I am not sure if this helps, but here you go... a simple JSON plugin for jQuery. http://www.gnucitizen.org/projects/jquery-json/ I will add also the JSON serializing and deserializing features from AttackAPI (http://www.gnucitizen.org/projects/attackapi) soon. cheers

[jQuery] Re: A jQuery success story

2007-07-20 Thread Christopher Jordan
This is awesome, Michael! Great work! And keep spreading the jQuery goodness around. :o) Chris On 7/20/07, Sean Catchpole [EMAIL PROTECTED] wrote: A Great Story Michael, thank you. ~Sean -- http://cjordan.us

[jQuery] Re: Cookies with JQuery?

2007-07-20 Thread Danjojo
Got it using, Klaus's cookie plugin. $(function() { $(#languages).bind('change', function() { var country = $(this).val(); if(country) { $('#countryFlag').attr(src, images/ + country + .gif);

[jQuery] Server Time of the day Clock functions

2007-07-20 Thread tzmedia
Can jquery be used to load a different site design (skin if you like) according to the hosting server clock time. The inspiration for the idea is: http://www.taprootcreative.com/ Which loads different site backgrounds and background sounds. Not quite sure how they have their version working. Too

[jQuery] Re: Server Time of the day Clock functions

2007-07-20 Thread Andy Matthews
That would probably be best done on the server side. When the page loads, check the time and provide an alternate CSS file. Unless of course you'd like the page to change after it has already loaded. Then yes, jQuery could be used to do that. -Original Message- From:

[jQuery] [SITE] Performancing using jQuery

2007-07-20 Thread Tane Piper
Came across this on Technorati: http://performancing.com/the-new-pmetrics-dashboard The new pMetrics Dashboard is designed to quickly and efficiently show you the traffic data that you care about. It is full of live refresh fun (many thanks to the jQuery JavaScript library), and includes the

[jQuery] Re: Long running script IE6, help!

2007-07-20 Thread Giuliano Marcangelo
Josh, Maybe another improvement you could make is to use *table* { table-layout:fixed }, if you are confident that your content will not overflow their respective tablecells...link: http://www.blooberry.com/indexdot/css/properties/table/tlayout.htm... .. looking at your page

[jQuery] Re: Long running script IE6, help!

2007-07-20 Thread Klaus Hartl
Giuliano Marcangelo wrote: Josh, Maybe another improvement you could make is to use *table* { table-layout: fixed }, if you are confident that your content will not overflow their respective tablecells...link:

[jQuery] Re: Long running script IE6, help!

2007-07-20 Thread Josh Nathanson
Everyone, Thanks for the help. I went old school and hard coded the mouse events into the elements, of course using jQ in the event handlers. Just too many elements on the page for jQ to handle the binding comfortably. Now it's running great. -- Josh - Original Message - From:

[jQuery] Re: A jQuery success story

2007-07-20 Thread Glen Lipka
That's awesome. One minor note: Convinced by my arguments and eulogising, I think you meant evangelizing. Unless you were declaring that old javascript programming is dead. In which case, eulogizing is perfect. :) jQuery has changed alot of our lives. In the recent survey, it was asked: How

[jQuery] Effect - Slide Up/Down

2007-07-20 Thread debussy007
Hi, I try to apply effect on a very basic example, But I can't have it working. Can anyone help me with this ? Thank you !! !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html xmlns=http://www.w3.org/1999/xhtml;

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread Glen Lipka
Couple of issues. 1. You can use SlideToggle to reduce complexity alot. $(input.oneButton).click(function(){ $(#level2).slideToggle(slow); }); However, you may WANT two buttons. 2. You can't really slideup a TR. Its not that flexible in that. I whipped up a demo to show a possible solution.

[jQuery] Re: A jQuery success story

2007-07-20 Thread Michael Price
Well, the old ways ARE dead to me now - I can't think of a situation where I'll ever need to write regular old JavaScript again :) But I DID look up eulogise before I posted just to make sure it would be an appropriate word and I think, from the definitions I found, I got away with it either

[jQuery] ANNOUNCE: fr.jquery.com/planet

2007-07-20 Thread Richard D. Worth
There's a new jQuery planet[1], and it speaks French: http://fr.jquery.com/planet We've got two french jQuery blogs syndicated so far: Gastero Prod jquery.info Note: fr.jquery.com (without the /planet) is a work in progress. For now it just redirects to jquery.com. Stay tuned. - Richard

[jQuery] Re: Blockui problem

2007-07-20 Thread Anthony Leboeuf(Worcester Wide Web)
anyone have any idea? im really stumped on this one. hours and still cant figure out the deal in firefox Anthony Leboeuf(Worcester Wide Web) wrote: The error is right, question is not defined. Is there a way to bipass it looking for that variable in firefox? works perfect in IE -Tony

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread Rick Faircloth
I know this may sound goofy as a solution, but when I first starting working jQuery, one of the first things I tried to do was slide a table row. As you said, Glen, it's not a pretty sight. I tried something a little more radical. I use separate *tables* for each row with each table

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread Rick Faircloth
Oops. the URL should be: http://ha2.whitestonemedia.com/cfm/church_calendar.cfm Sorry. From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Faircloth Sent: Friday, July 20, 2007 9:23 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Effect - Slide Up/Down

[jQuery] superfish delay not working

2007-07-20 Thread cpsengine
I have a single-level css dropdown and wanted to add a delay, so I setup superfish. It's working as I can see the animation when I mouse over my menu, but the mouse delay isn't working. I think I need to add the sfHover class somewhere into my css, but can't find exactly what I need to change to

[jQuery] Animate bug under IE6?

2007-07-20 Thread Collin Allen
Hey all -- I'm new to the list (but not so new to jQuery), and was hoping I could get some assistance regarding what appears to be a bug in the .animate function when running under IE6. Inside a .click function assigned to a specific anchor tag, I call .animate using jQuery 1.1.3.1. It works in

[jQuery] Using slideToggle with multiple divs

2007-07-20 Thread dan
I plan on using jQuery to show/hide comment boxes for corresponding news stories on my website. I have implemented the code to make just the one box slidetoggle, but like I mentioned there are numerous comment boxes on the page and I don't really know how to make them all behave independently.

[jQuery] Re: Problem with IE6 FadeIn and FadeOut

2007-07-20 Thread [EMAIL PROTECTED]
Quick update, I reverted to 1.1.2 and the above script works fine (the example link still uses 1.1.3 for reference). Does anyone know if fadein and fadeout have been altered enough to make this a bug or am I not understanding enough about how to use jquery? regards, -jesse- On Jul 20, 2:50 pm,

[jQuery] Using slideToggle with multiple divs

2007-07-20 Thread dan
Hello, I wish to use slidetoggle with multiple divs. I have implemented it using only one div however I want all of the divs to operate independently. Here is the HTML structure of a story on my website: div class=story div class=storytitlehello/div div

[jQuery] Re: superfish delay not working

2007-07-20 Thread Olivier Percebois-Garve
have u forgotten to include the hoverIntent plugin ? cpsengine wrote: I have a single-level css dropdown and wanted to add a delay, so I setup superfish. It's working as I can see the animation when I mouse over my menu, but the mouse delay isn't working. I think I need to add the sfHover

[jQuery] Re: Blockui problem

2007-07-20 Thread Mike Alsup
Tony, The error says it all. 'question' is not defined. It looks like you removed this line: var question = $('#question')[0]; This line should execute one time, in a doc-ready block. It is just a quick way to cache the element so that you can use it over and over, even if it is removed

[jQuery] Re: Animate bug under IE6?

2007-07-20 Thread Dan G. Switzer, II
Collin, Hey all -- I'm new to the list (but not so new to jQuery), and was hoping I could get some assistance regarding what appears to be a bug in the .animate function when running under IE6. Inside a .click function assigned to a specific anchor tag, I call .animate using jQuery 1.1.3.1. It

[jQuery] Re: A jQuery success story

2007-07-20 Thread Dan G. Switzer, II
Well, the old ways ARE dead to me now - I can't think of a situation where I'll ever need to write regular old JavaScript again :) But I DID look up eulogise before I posted just to make sure it would be an appropriate word and I think, from the definitions I found, I got away with it either way

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread Karl Swedberg
Rick, That looks really great. Might be time to update the version of jQuery on that site, though, because FF2 Mac gets the initial flicker on the slideDown due to a jquery.js bug which has since been fixed. Also, Erik Beeson did some fantastic work with this, using iFrames:

[jQuery] Re: Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-07-20 Thread Mark
Hi Brandon, It is difficult to create an example, because it is a complex application, and the autocomplete is highly customized. And also I am going vacations right now, and I will be back in August. This is a big DIV, and inside has two DIVs one floated left, and the other floated right. And

[jQuery] Re: Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-07-20 Thread Brandon Aaron
Are you using units other than pixels for anything? -- Brandon Aaron On 7/20/07, Mark [EMAIL PROTECTED] wrote: Hi Brandon, It is difficult to create an example, because it is a complex application, and the autocomplete is highly customized. And also I am going vacations right now, and I

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread Rick Faircloth
Thanks for the tips, Karl. I haven't had time to do much with jQuery for a little while since working with it for a couple of weeks. I'll check out the new version and Erik's work. Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent:

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread debussy007
Thank you all for your nice tips !! In my case it is better to change effect, fadeIn / fadeOut My table is quiete complexe and I ahd troubles with the slide Up / Down. FadIn / Out works perfectly in FireFox, but not in IE 6 ! There is no effect at all. Here is my example : (u will not like my

[jQuery] Re: superfish delay not working

2007-07-20 Thread Joel Birch
On 21/07/2007, at 11:09 AM, cpsengine wrote: I have a single-level css dropdown and wanted to add a delay, so I setup superfish. It's working as I can see the animation when I mouse over my menu, but the mouse delay isn't working. I think I need to add the sfHover class somewhere into my css,

[jQuery] Dynamically set function settings?

2007-07-20 Thread juliandormon
Hey all, I am using the innerFade plug-in, though my question could apply to any function. Inner fade takes a bunch of divs or images or paragraphs, and animates them if they fall within a class. There are certain parameters that you specify when you call innerFade into action, such as speed,