[jQuery] Re: Twitter for support?

2009-09-14 Thread Ashley
the least amount of repetition. To me Twitter is right out for this. (By the way, love your plugins and really appreciate how much support you give on them; very impressive). -Ashley On Sep 13, 11:53 am, Mike Alsup wrote: > Over the past few months I've been fielding an increasing number

[jQuery] Re: $.ajax calls in firefox doesn't work

2009-08-25 Thread Ashley
POST request. -Ashley On Aug 24, 3:58 pm, hosemaria wrote: > Clearing Cookies doesn't work > > I am newbee with analyzing headers responses. This are info taken from > Fiddler debuger (FX responses). If you could help me to find something > odd I will be grateful. > > Re

[jQuery] Cycle Plugin not working in Chrome & Safari - Tests fine in IE 6, 7, and FF.

2009-06-10 Thread Ashley
http://www.helpcomingyourway.org/index.php - Cycle in action (open in Chrome or Safari to see bug). Any ideas? If I can't get this fixed, I may have to apply a clipping declaration to the div and go without, but I'd rather not do that. Ashley

[jQuery] Re: Simple JCarousel Issue - Scroll

2009-02-25 Thread Ashley
Nevermind - Got it!

[jQuery] Simple JCarousel Issue - Scroll

2009-02-25 Thread Ashley
jQuery('#carousel').jcarousel({ visible: 8, scroll: 8, }); }); As long as I remove the configuration options, the carousel works fine. What gives? Am I missing a bracket or something somewhere? I just want eight items to show instead of the standard three! Thanks, Ashley

[jQuery] Re: Cycle "Jumps" in IE

2009-02-10 Thread Ashley
Hi Mike, Thank you so much - that worked! Is this an ok version of jQuery to use until v1.3.2? Ashley On Feb 10, 2:07 pm, Mike Alsup wrote: > > The cycle with pager is working fine on my site in all browsers.  In > > IE7, when I refresh the page, the 4 images contained in t

[jQuery] Cycle "Jumps" in IE

2009-02-10 Thread Ashley
Hi All, jQuery file: jquery-1.3.1.min.js jQuery Cycle file: jquery.cycle.all.min.js (I believe these are the most recent versions, downloaded both today) The cycle with pager is working fine on my site in all browsers. In IE7, when I refresh the page, the 4 images contained in the cycle ALL sh

[jQuery] Re: jQuery 1.3 Released

2009-01-14 Thread Ashley
things so right (like opening the selector engine). I was starting to look at ExtJS for some bigger projects but the way things are going I'd rather take the time to write a plugin or two with jQuery for anything that I would have wanted from ExtJS. ...just three years. Terrific. -Ashley On

[jQuery] Re: Loading Mask

2008-10-17 Thread Ashley
If I understand you, this should do the trick - http://www.malsup.com/jquery/block/#element

[jQuery] Superfish navbar wrapping problem in IE6 & Firefox

2008-09-21 Thread Ashley
IE6 3) In IE6 how to show the 3rd level menu items over the multiple lines of 2nd level menu items Please let me know if I am missing something totally. Thanks Ashley

[jQuery] Re: Autocomplete and JSON

2008-04-08 Thread Ashley Pond V
uot;string 4", "string 5"] > > ... displays as one string item ie.: > > ["string 1", "string 2", "string 3", "string 4", "string 5"] > > ... including the square brackets! ... instead of one string per line > ie.: I explained how to do this in my previous message. You have to do the overrides if you want to do anything but 1/line plain text. -Ashley

[jQuery] Re: Autocomplete and JSON

2008-04-06 Thread Ashley
}); Where the JSON coming back from the server looks like: {"resultSet":[{"id":"3","title":"Green Services"}, {"id":"5","title":"Green Living Guides"}]} You can match up the format against the autocompleteJSON parsing function to see what's going on. It's always best to wrap your JSON in an object {} and not just an array []. In an array the data can be visible to hacking on certain browsers (just FF, I think). -Ashley

[jQuery] Re: How can I test my javascript?

2008-04-01 Thread Ashley
[Copy cat. Well, at least you gave the link.]

[jQuery] Re: How can I test my javascript?

2008-03-31 Thread Ashley
Depending on your needs I also recommend Selenium; highly (both the IDE and the server for running automated tests). Keep your markup clean and your semantics correct and layout neutral (e.g., "sub_nav" is far better than "left_nav" as an Id) and changing your layout may not have any effect, or mi

[jQuery] Solved: Re: How do you restore the defaultValue of select element after a change event?

2008-03-25 Thread Ashley
After trying a dozen different things I ended up using .reset() on the form which worked fine once. Obviously with Ajax it was not resetting to the last value but the original state of the DOM. I ended up using a plain old hidden input named current_value and updating/retrieving as necessary. I w

[jQuery] Re: How do you restore the defaultValue of select element after a change event?

2008-03-24 Thread Ashley
On Mar 24, 3:08 pm, Jason Huck <[EMAIL PROTECTED]> wrote: > If your first element has an empty value attribute, you can > do this: > > $('select').change(function(){ > alert($(this).val()); > $(this).val(''); > > }); I wish. The XHTML is written dynamically and the selected eleme

[jQuery] How do you restore the defaultValue of select element after a change event?

2008-03-24 Thread Ashley
I have a select which pops a modal (with blockUI) input when a select is changed. The modal is an Ajax mini-form with an "update" and a "cancel." The update works great but for cancel I need to be able to roll back the change() to the selection or else it appears from the user's perspective that

[jQuery] all parent().children() except the one under a hover

2008-03-05 Thread Ashley
.hover(function(){ $(this).parent().children().animate({opacity: 0.3}, "fast")} ,function(){ $(this).parent().children().animate({opacity: 1}, "fast") }); Thank you! -Ashley