[jQuery] Jquery Validate Dependency Callback Error Message?

2008-10-09 Thread alivemedia
I need to make sure that 1 field os less than the other so I am using the dependency callback feature and it's working but I cannot get an error message to display - anyone get this to work? Here is my code: $(document).ready(function(){ $("#AddPartner").validate({ rules: { Gl

[jQuery] Re: disable select in FF?

2008-04-02 Thread alivemedia
Still not working, weird, here it is as it stands: $('input[type=checkbox]').bind("click",function(){ var el=$(this).parent().next('td select') if (this.checked) { el.attr('disabled', false); } else { el.attr('disabled', true);

[jQuery] disable select in FF?

2008-04-01 Thread alivemedia
I am trying to disable / enable a select drop down list. Works fine in IE but not in FF. I have a check box that when checked the select becomes enabled when unchecked then it become disabeled. Here is my code: $('input[type=checkbox]').bind("click",function(){ var el=$(this).paren

[jQuery] creating modal layer on the fly?

2008-02-15 Thread alivemedia
I am trying to write my own little modal popup script and it's working fine in FF but not in IE7. In IE7 the modal layer shows up on top of the content I want displayed even though I believe I have the Z- Indexes set properly. Anyone run into this an know how to overcome it? I know there are ot

[jQuery] Multiple Superfish on the same page problems

2008-01-30 Thread alivemedia
I am trying to have 3 different vertical lists that have flyouts for navigation. Here is the site (I know it is a mess right now): http://visitpalmbeach-com.alivedns.com/default.aspx Problem is the second and third menus get displayed horizontally. The flyouts works but the display is borked.

[jQuery] BlockUI DisplayBox Close on image click

2008-01-21 Thread alivemedia
I want to use blockui to show a product enlargement but I want it to close when the user clicks on the image. Here is the blockui sample page: http://www.malsup.com/jquery/block/#displaybox Anyone done this before?

[jQuery] Re: IE7 fadeOut table row?

2008-01-17 Thread alivemedia
Nope, not yet - anyone else have this problem and a solution?

[jQuery] IE7 fadeOut table row?

2008-01-14 Thread alivemedia
I am having trouble getting a table row to fade out an dlook good in IE7. It basically doesn't work, the text turns slightly rough looking for a second and then disappears. Works fine in FF though. Has anyone achieved this effect?