Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is my first code:

$j('.toggle').delegate('','click',function(e){
    e.preventDefault();
});

This is stopping my a-tag from doing anything.

Now I want this in a function like this:

$j('.toggle').delegate('','click',function(e){
    banner();
});

if(x)
{
banner();
}

function banner() 
{ 
e.preventDefault(); 
}

But I can't use the event now, how can I solve this?

EDIT

Thanks for the response, but I solved my problem another way. This is the code if you are interested. When you hide a banner, the banner will stay hidden on all pages, checking a cookie. When you open it again, it will stay open on all pages.

    // Set cookie if there is no cookie
    if(getCookie() != 0 && getCookie() != 1)
    {
        setCookie(1);
    }

    // Close the banner if cookie = 0 when page loads
    if(getCookie() == '0')
    {
        closeBanner();
    }

    // Set the cookie   
    function setCookie(status) {
        $j.cookie('status', status, { path: '/', expires: 100 });
        return false;
    }

    // Get the cookie
    function getCookie() {
        //console.log($j.cookie('status'));
        return $j.cookie('status');
    }

    // Close and open the banner on click

    $j('.toggle').delegate('','click',function(e){
        e.preventDefault();

        if(getCookie() == 1)
        {
            setCookie(0);
            closeBanner();
        } else if(getCookie() == 0)
        {
            setCookie(1);
            openBanner();
        }
    });

    // Close the banner
    function closeBanner()
    {
        var src = $j('#img_lipke').attr("src").replace("lipske", "lipske_down");
        $j('#img_lipke').attr("src", src);
        $j('#bannerbottom').css('margin-top','5px');

        changeBanner();
    }

    // Open the banner
    function openBanner()
    {
        var src = $j('#img_lipke').attr("src").replace("lipske_down", "lipske");
        $j('#img_lipke').attr("src", src);
        $j('#bannerbottom').css('margin-top','0');

        changeBanner();
    }

    // Open or close the banner
    function changeBanner(e) 
    {
        $j('#banner').animate({ 
            height: 'toggle'
        }, 800, function() {
            // Animation complete.
        });
    }
share|improve this question

2 Answers

up vote 2 down vote accepted

Just add the preventDefault after your call to banner

$j('.toggle').delegate('','click',function(e){
    banner();
    e.preventDefault();
});
share|improve this answer

I'm not sure what you're trying to accomplish, but if you want to use the event object in the banner function, just pass it.

$j('.toggle').delegate('','click',function(e){
    banner(e); // pass "e" as argument
});

function banner(e) {
    e.preventDefault();
}
share|improve this answer
forgot your e argument in the banner function – Bob Fincheimer Aug 1 '11 at 13:10
@Bob Thanks, just saw that ;) – David Aug 1 '11 at 13:10
thanks, I tried this and it works, but I also want to call the banner function when a cookie is set to 1. So the banner is closed automatically when you closed it another page. – Ruben Aug 2 '11 at 6:45
So if I call the banner() function, I don't have the e variable – Ruben Aug 2 '11 at 6:45
@Ruben Can you please modify your question above to reflect this question? I'm not sure it's clear what you're asking and it would help if you could provide a complete description of the problem. – David Aug 2 '11 at 10:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.