Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how to make popup window on website's 1st page, which asks to like my website on Facebook, and this popup can be closed in 2 ways:

  1. person who visits my website like me on Facebook
  2. person just clicks close on the top of popup?
share|improve this question
UsejQuery Modal Window – Mr. Alien Jul 30 '12 at 13:37

closed as not constructive by CBroe, Igy, Colin, Oleg V. Volkov, j0k Aug 8 '12 at 5:58

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

http://fancybox.net/

http://lytebox.com/

http://lokeshdhakar.com/projects/lightbox2/

look at the links above.

when page load open fancybox..

<script type="text/javascript">
    $(function () {
        $("#asd").fancybox({
            'hideOnContentClick': false,
            'autoDimensions': false,
            'width': 940,
            'height': 295,
            'scrolling': 'No',
            'transitionIn': 'elastic',
            'transitionOut': 'elastic',
            'speedIn': 0,
            'speedOut': 0,
            'type': 'iframe',
        });
    });

   $(document).ready(function () {
        $("#asd").click();
    }); 
</script>


 <a href="popup.htm" id="asd" style="text-decoration:none;  visibility:none;">Open Popup    </a>


   $(document).ready(function opens modal popup when page loads.
share|improve this answer
thanks, erdincozdemir – androider Jul 30 '12 at 20:11
I have another question, how can this, for example, fancybox, load on top of my 1st page? – androider Jul 30 '12 at 20:23
i've updated my answer. – Erdinç Özdemir Jul 31 '12 at 11:21
thank you very much! – androider Jul 31 '12 at 14:07

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