This solved my problem. Thank you.
On Jan 8, 2008 2:37 PM, Alessandro Feijó <[EMAIL PROTECTED]> wrote:
> Why dont you use .click trigger?
>
>
> Something like
>
> $("#precheck").click(
> function () {
> $(".preregbox").toggle('slow');
> },
>
>
>
>
> $(document).ready(function(){
> $("#precheck").toggle(
> function () {
>$(".preregbox").show('slow');
> },
> function () {
>$(".preregbox").hide('slow');
> }
> );
> });
I've had that problem too and switched to this structure:
$('input#precheck').click(f
Why dont you use .click trigger?
Something like
$("#precheck").click(
function () {
$(".preregbox").toggle('slow');
},
);
On Jan 8, 2008 4:05 PM, jpl80 <[EMAIL PROTECTED]> wrote:
>
>
> I'm having a problem with tog
3 matches
Mail list logo