I am trying to find out how to get a jQuery script to work correctly when a click event is started, the script calculates the height of a container (this script appears at the start of the page on load and works 100%) but I am now trying to get it to work inside a .click event.

If anyone knows how I should achieve this I would be very grateful.

p.s. I have tried doing document ready; waiting for the DOM to load but no cigar.

$(document).ready(function() {
    $("#hidden4").click(function(event) {
        event.preventDefault();
        $("#hidden4-1").slideToggle();

        var classDown = $('#hidden4 div.down').attr('class');
        var classUp = $('#hidden4 div.up').attr('class');

        if(classDown == 'down') {
            $("#hidden4 div.down").attr("class","up");
        }
        else if(classUp == 'up') {
            $("#hidden4 div.up").attr("class","down"); 
        }
            // Attain the absolute height of the container id container and assign to a usable variable
            var height = $("#container").height();
            alert (height);
            // Use the previous variable, divide by 4 then round that up and multiply by 4 and assign to new variable
            var newHeight = Math.ceil(height / 4) * 4;

            // Create a new variable and add the string "center" to it
            var finalHeight = "center ";

            // Using the previous variable add to it using the first 2 variables subtracting to find the difference and add 2
            finalHeight += (newHeight - height)+2;

            // Using the previous variable add to it the string "px" for the css selector usage
            finalHeight += "px";

            // Update the CSS of the required element altering the background position with the final variable
            $(".contentFooter").css('background-position', finalHeight);
    });
});

Thank you in advance.

link|improve this question

What are you trying to do with the nested $(document).ready ?? I haven't done anything with JS in two years but isn't a document only ready once? – reinierpost Oct 22 '10 at 11:25
please ignore the nested ready that was accidently left in when I was playing around trying to get it working :( – Daniel Wrigley Oct 22 '10 at 11:35
feedback

2 Answers

up vote 2 down vote accepted

You are nesting ready() inside ready(). Don't do such a thing. Try this:

$(document).ready(function () {
    $("#hidden4").click(function (event) {
        event.preventDefault();
        $("#hidden4-1").slideToggle();

        var classDown = $('#hidden4 div.down').attr('class');
        var classUp = $('#hidden4 div.up').attr('class');

        if (classDown == 'down') {
            $("#hidden4 div.down").attr("class", "up");
        }
        else if (classUp == 'up') {
            $("#hidden4 div.up").attr("class", "down");
        }
        // Attain the absolute height of the container id container and assign to a usable variable
        var height = $("#container").height();
        alert(height);
        // Use the previous variable, divide by 4 then round that up and multiply by 4 and assign to new variable
        var newHeight = Math.ceil(height / 4) * 4;

        // Create a new variable and add the string "center" to it
        var finalHeight = "center ";

        // Using the previous variable add to it using the first 2 variables subtracting to find the difference and add 2
        finalHeight += (newHeight - height) + 2;

        // Using the previous variable add to it the string "px" for the css selector usage
        finalHeight += "px";

        // Update the CSS of the required element altering the background position with the final variable
        $(".contentFooter").css('background-position', finalHeight);
    });
});

btw, if you want the container-height-calculation script to execute both at page load and on click, than put the code inside a function and run the function inside both ready() and click().


Update:

$("#foo").slideToggle(function() {
    // this code executes AFTER slideToggle has completed
});
link|improve this answer
I did sadly try that before posted on here, it doesnt work unforunately :( any other ideas? – Daniel Wrigley Oct 22 '10 at 11:34
Additional, I do already have the script as a function working in the ready() and click() functions of the site :( – Daniel Wrigley Oct 22 '10 at 11:38
What does the alert method alert? – Šime Vidas Oct 22 '10 at 11:48
the alert shows me what value of height the jquery took when the code was committed, that way I can see if it is grabbing the new height after the click event toggles a container down to show, thus setting a new height for #container. – Daniel Wrigley Oct 22 '10 at 11:50
Try alerting the finalHeight value right before you set it to the .contentFooter element(s). What's its value? btw, in JavaScript, we don't use the term "committed". JavaScript code is evaluated. Alternatively, you can say it is executed. – Šime Vidas Oct 22 '10 at 12:36
show 4 more comments
feedback

I don't think you need to nest another $(document).ready() in a jquery click, since the DOM is already ready when you applied the click event.

link|improve this answer
Sadly this was not the problem, although wrong and only left in due to testing, removing it has not fixed the problem – Daniel Wrigley Oct 22 '10 at 11:37
feedback

Your Answer

 
or
required, but never shown

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