I just finished building a Joomla website for a client and of course on the day of launch I am having a problem with the Chrome browser not closing a specified div on click. I have tested in every other browser and it works fine. Is there any way I could rewrite this code so it would work in Chrome.. and of course all the others?

I'm closing a div that houses a flash animation after some time.

JavaScript:

<script> 
    $(document).ready(function() {
        $("#flashcntr").click(function() {
            setTimeout(function() {
                $("#flashcntr").addClass("hide");
            }, 2000); 
        });
    });
</script>

Style in the head:

<style type="text/css">
    .hide  { display: none !important;}
</style>

Please help! :) loosing hair :(

link|improve this question
What does the HTML look like? Can you reproduce your problem on jsfiddle.net? – mu is too short Feb 14 at 2:27
it works fine for me in a jsFiddle... could you post your html as well? – davidgmar Feb 14 at 2:29
Here is the link, try it in Chrome: thestageisset/cincyusa.com. I tried all of the suggestions and it still isnt working in Chrome :( – user1208105 Feb 14 at 2:40
I assume the URL is this: thestageisset.cincyusa.com – positiv Feb 14 at 2:51
Yes that url is correct. – user1208105 Feb 14 at 2:58
show 3 more comments
feedback

4 Answers

$("#flashcntr").addClass("hide"); would be better off as $("#flashcntr").hide();

see http://api.jquery.com/hide/

edit: it seems your flash object is sitting over your #flashcntr element. through the DOM editor, i set the width of flashcntr to 1024px and set the bg color to #f0f so you could see the clickable region. I then clicked it and it hid after the two seconds timeout.

I suppose I would ensure that the z-index on the flash object is set to a lower index than the flashcntr element.

edit2: to achieve your desired effect, set the flash object position to relative and z-index to -1 (that's minus one). You should then be able to click the flashcntr element, so the flash object's style attribute looks like this:

style="z-index:-1; position:relative; visibility:visible;"
link|improve this answer
Could I use a z-index to bring it forward? – user1208105 Feb 14 at 3:01
i just updated my answer – positiv Feb 14 at 3:11
I added that via object#flashid on my stylesheet and if you click it the flash doesnt run but it does disappear. I do need the curtains to open... any other thoughts? – user1208105 Feb 14 at 3:31
Humm, I wasn't aware you wanted to retain the flash animation. If you wanted to kind of mimic it a little, you could try replacing your .hide() with .slideUp('fast') to give the curtain an effect of being raised? Alternatively, you could look into the ExternalInterface JavaScript-Actionscript interactions to control Flash objects through JS. However, if the "Open" button triggers the curtain event, why don't you just change the scope of the button to the entire flash object? – positiv Feb 14 at 4:07
feedback

Not sure if you've tried the jQuery hide function or not, but it would be like this:

$(document).ready(function() {
    $("#flashcntr").click(function() {
        setTimeout(function() {
            $("#flashcntr").hide();
        }, 2000); 
    });
});

If that still doesn't work, I would try using the Developer -> Javascript Console in Chrome and put in $("#flashcntr").hide(); and see if it hides the button.

If that does work, from there, you can add a console log to see if you're making it into the .click function. The console.log statement will show up in the javascript console.

$(document).ready(function() {
    $("#flashcntr").click(function() {
        console.log('button clicked');
        setTimeout(function() {
            $("#flashcntr").hide();
        }, 2000); 
    });
});
link|improve this answer
I have tried the .hide function. It seems like its not even getting to the code to read the setTimeout function. – user1208105 Feb 14 at 2:49
feedback

Do you have the option of just removing it from the DOM? Or do you give the user the option of 'bringing it back later' w/out a page reload?

You may just try:

 jQuery(document).ready(function($) {
     $("#flashcntr").click(function() {
          setTimeout( function() {
                      $("#flashcntr").remove();
                    }, 2000);
     });
 });

That will remove it from the DOM completely. And if you wanted to give them the option of bringing it back, you could just load a snippet via Ajax and insert it back:

 $("#putitback").click(function() {
     $.get("myflash.html").appendTo("#somediv");
 });

I find I'm often having to do elaborate stuff like this for Chrome to behave like all other browsers.

link|improve this answer
feedback

It works for me in Chrome... http://jsfiddle.net/ZF7Kj/2/

HTH, Bud

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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