[jQuery] Re: (validate plugin) dependency callback not being triggered

2009-11-09 Thread Brad Hile
script inside ready() > > $("#validateMe").click(function(){ >    if($("form").valid()) >      alert("All data are valid"); >    else >      alert("Invalid data"); > > }); > > html > value="Validate" /> > > Hop

[jQuery] Re: (validate plugin) dependency callback not being triggered

2009-11-05 Thread Brad Hile
Bump > Hi > I've tried every way I can think of to use dependency to enable > additional elements to be required and have had no luck at all. I > simply want to enable "required" on a number of fields when a specific > radio button is selected and for it to be disabled when its not. > (These field

[jQuery] Re: SuperFish Arrows

2009-04-24 Thread Brad Hile
it's set in the css file at the bottom. Just change the file name and dimensions to suit On Apr 24, 12:09 am, Praveen wrote: > How is the arrows displayed in the superfish menus? If I would like to > change to an image of my choice, how do I go about? > > Regards, > Praveen

[jQuery] photoshop like image navigator

2008-11-19 Thread Brad Hile
Just wondering if anyone can point me in the right direction for something that works a bit like the image navigation in Photoshop? I'm working with a large image and need a way for a user to be able to zoom it in and out and view the large image in relation to a thumbnail. The magnify plugin from

[jQuery] Re: php mysql

2008-05-06 Thread Brad Hile
I'm certainly not a jquery.guru but do use jquery for database update (php/mysql) I think from your post your thinking of jquery in the same league as server side languages like php & ruby and its not. Its client side javascript with all the restrictions that brings but a much nicer way of dealing

[jQuery] Re: how to build a image cycle?

2008-01-24 Thread Brad Hile
To loop Jcarousel you need to set the wrap option and cycle the auto option The following will show 5 images(visible:5), advancing 1 image (scroll: 1) every 2 seconds (auto:2) and when it reaches the last image wrap back to the first (wrap:last). // set up the carousel jQuery('#mycarousel').j

[jQuery] Re: preventing open element from being closed and reopened in accordion menu (not using accordion plugin)

2008-01-13 Thread Brad Hile
Was just reading another post "Trying to show a div on mouseover of menu item... " and pointed me to the solution The answer: if ($(this).parent().next().is(':hidden')) On Jan 13, 11:03 am, Brad Hile <[EMAIL PROTECTED]> wrote: > Hi > I have a simple

[jQuery] preventing open element from being closed and reopened in accordion menu (not using accordion plugin)

2008-01-12 Thread Brad Hile
Hi I have a simple accordion menu and would like to prevent the already open dd from being closed and reopened when clicked on. eg. $("#menu dt a").click(function(){ // only activate if dd is hidden so currently active block is not reopened if(hidden???) { $("#menu dd:visible").slideUp

[jQuery] Re: jCarousel + slideshow effect?

2008-01-02 Thread Brad Hile
Hi Bryan, I've been tinkering with something along the same lines for awhile now unfortunately your url was truncated so i'm not 100% certain this is the same as the example you gave but take a look http://www.robertalla.com/new/newgaltest.php?g=1 I'm still getting my feet wet with jquery but it

[jQuery] Re: using jcarousel as image viewer - how to load large image onclick with loading animation

2007-11-29 Thread Brad Hile
Hi maddog I had to change things a bit but did manage to get click events working by using the jcarousel class assigned to each image $(".jcarousel-item").click( function() { // do stuff return false; }); Hope that helps you Brad On Nov 20, 11:09 pm, maddog <[EMAIL PROTECTED]> wrote: > Did yo