Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9199331
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T22:30:42+00:00 2026-06-17T22:30:42+00:00

I am using fancybox ( http://fancyapps.com ) in my application. I have a div

  • 0

I am using fancybox (http://fancyapps.com) in my application. I have a div defined like this:

 <div id="dialog-user-login" title="User Login" style="display: none" class="popup-dv">
            <div id="myDivID7">
                <div class="up-content">
                    Your Contents SHow HERE
                    <input id="txtUserName" name="txtUserName" class="normal" type="text" /><br />
                    <input id="txtpassword" name="txtUserName" class="normal" type="password" /><br />
                </div>
                <div class="social-icons">
                    <img src="wp-content/themes/touch/images/twit-icon.png" width="65" height="22">
                    <img src="wp-content/themes/touch/images/face-icon.png" width="65" height="22">
                </div>
            </div>
        </div>

I have included these files:

<script src="../../Content/FancyBox/jquery-1.9.0.min.js" type="text/javascript"></script>
    <link href="../../Content/FancyBox/jquery.fancybox.css" rel="stylesheet" type="text/css" />
    <script src="../../Content/FancyBox/jquery.fancybox.js" type="text/javascript"></script>

and using this code

 $(document).ready(function () {

            $("a#fancyBoxLink1").click();

});

1) It shows the fancybox but when i click overlay, it closes.
2). If I use following code, it doesn’t work:

 $("a#fancyBoxLink1").fancybox({
            'href': '#myDivID1',
            'titleShow': false,
            'transitionIn': 'elastic',
            'transitionOut': 'elastic'
        });

with this html:

<a href="#myDivID1" class="mrgn-ao" id="fancyBoxLink1">
        <div id="dialog-user-login" title="User Login" style="display: none" class="popup-dv">
            <div id="myDivID7">
                <div class="up-content">
                    Your Contenssssssssssssssssssssssssssssssssssssssssssssssssssst SHow HERE
                    <input id="txtUserName" name="txtUserName" class="normal" type="text" /><br />
                    <input id="txtpassword" name="txtUserName" class="normal" type="password" /><br />
                </div>
                <div class="social-icons">
                    <img src="wp-content/themes/touch/images/twit-icon.png" width="65" height="22">
                    <img src="wp-content/themes/touch/images/face-icon.png" width="65" height="22">
                </div>
            </div>
        </div>
        </a>

Please suggest me what is wrong with my code.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T22:30:44+00:00Added an answer on June 17, 2026 at 10:30 pm

    You need add in the <head> code:

    <script>
    $(document).ready(function() {
    $("#fancyBoxLink1").fancybox({
    'titleShow': false,
    'transitionIn': 'elastic',
    'transitionOut': 'elastic'
    });
    });
    </script>
    

    On the <body> code:

    <a href="#dialog-user-login" class="mrgn-ao" id="fancyBoxLink1">
    <div id="dialog-user-login" title="User Login" style="display: none;width:500px;" class="popup-dv">
    <div id="myDivID7">
    <div class="up-content">
    Your Contenssssssssssssssssssssssssssssssssssssssssssssssssssst SHow HERE
    <input id="txtUserName" name="txtUserName" class="normal" type="text" /><br />
    <input id="txtpassword" name="txtUserName" class="normal" type="password" /><br />
    </div>
    <div class="social-icons">
    <img src="wp-content/themes/touch/images/twit-icon.png" width="65" height="22">
    <img src="wp-content/themes/touch/images/face-icon.png" width="65" height="22">
    </div>
    </div>
    </div>
    </a>
    

    href – this is the link of pop-up-div

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've included fancybox2 files like instructed here http://fancyapps.com/fancybox/#instructions using my extensions xml and <action
I am using this http://fancybox.net/ I have 2 div s: 1st open and 2nd
I'm using jQuery fancybox http://fancyapps.com/fancybox/ for soundcloud tracks in my web application where it
im using fancybox from: http://fancyapps.com/fancybox/ And the scroll pane is not working correctly and
Using Fancybox version 2 supplied by http://fancyapps.com/fancybox/#support I want to open a fancybox from
I am using jCarouselLite and fancybox together, please see this link http://travianstation.com/index.html script: http://travianstation.com/scripts/script.js
I'm using the http://fancyapps.com jQuery plugin Fancybox v2. It took me a while to
I am using this layover plugin to display content: http://jquery.com/demo/grey/ I know there must
First post, so apologies in advance. I'm using this How to display fancybox title
I am setting the title attribute of an element, and firing Fancybox, using this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.