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

I have a problem ...

JS

$('#Contact').ready(function(){
    $('a#Contact-Map').live('click',function(event){
        event.preventDefault();
        $('a#Contact-Map').fancybox({
            'transitionIn'  :   'elastic',
            'transitionOut' :   'elastic',
            'speedIn'           :   600, 
            'speedOut'          :   200, 
            'overlayShow'   :   true
        });
    });
});

HTML

<div class="Module-Frame" id="Contact">
    <a id="Contact-Map" href="./Modules/Contact/Images/mapa_big.png">
        <img src="./Modules/Contact/Images/mapa.png" alt=""/>
    </a>
</div>

This HTML code is loaded by .load() jQuery function. That's working but only when you click this image twice ...

Help pls :)


JS with load() func

$(document).ready(function(){

    $("#Menu").children().click(function(event){
        $("#Content").hide().load('./Modules/'+ event.target.id.substr(5) +'/index.php', function() {
            $(this).fadeIn();
        });
    });



});



HTML

< html  >
< head  > ...

...
<body>
...
            <div id="Menu">
                <a id="Menu-News" href="#" title="Aktualnosci"> aktualnoƛci  |
                <a id="Menu-Aboutus" href="#" title="O nas"> o nas  | 
                <a id="Menu-Contact" href="#" title="Kontakt"> kontakt  | 
                <a id="Menu-Gallery" href="#" title="Galeria"> galeria 

            </div>
...
< div id=#content> ...
share|improve this question
are you able to include the entire HTML you are using or at least your load() function? – timothyclifford Jan 17 '11 at 4:37
ok ... code incuded – Karol Gontarski Jan 17 '11 at 5:32
Timothy, do you have some ideas how to solve this problem ? – Karol Gontarski Jan 18 '11 at 2:52

2 Answers

up vote 6 down vote accepted

After many hours I solved the problem simply by change:

$(this).fancybox({
to:
$.fancybox(this,{

$('#Contact').ready(function(){
    $('a#Contact-Map').live('click',function(event){
        event.preventDefault();
        $.fancybox(this,{
            'transitionIn'  :   'elastic',
            'transitionOut' :   'elastic',
            'speedIn'           :   600, 
            'speedOut'          :   200, 
            'overlayShow'   :   true
        });
    });

});

share|improve this answer
wow it works! could you find out why? – abhijeetmisra Aug 19 '12 at 10:38
this definitely solves the issue I was having with fancybox bound to the click event of an individual <tr> within a table, thanks! – ariestav Nov 6 '12 at 17:16

Remove your onclick in your html, it's triggering before your event handler.

share|improve this answer
nothing change... same problem – Karol Gontarski Jan 17 '11 at 5:22

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.