Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi, when you open any site like infruit.com or myntra.com it first appears login and registartion form when we close it display site how can i do it
it done with jquery ? if yes than how
Posted

1 solution

Hello Member,

Your guessed it right, it's dome through JQuery. The typical code to achieve this is as shown below.
HTML
<script type="text/javascript">
$(document).ready(function() {
    showDialog();
});
function showDialog() {
    $( "#dialog-form" ).dialog({
        autoOpen: false,
        height: 300,
        width: 350,
        modal: true
    });
}

</script>
...
<div id="dialog-form">
    <div id="divNew">
        <label for="txtUserId">EMAIL ADDRESS</label><br/>
        <input id="txtUserId" name="txtUserId" size="32" maxlength="255"/><br/>
         ....
    </div>
    <div id="divExisting">
        <label for="txtUserId">EMAIL ADDRESS</label>
        <input id="txtUserId" name="txtUserId" size="32" maxlength="255"/>
         ....
    </div>
</div>

Regards,
 
Share this answer
 
Comments
Member 9815058 24-Mar-13 6:52am    
Sorry but in output i can't understand what it happen
Prasad Khandekar 24-Mar-13 9:24am    
I am not able to understand the reply. Please elaborate. I have not given the complete sample. You will have to include script tag for JQuery. (<script src="http://code.jquery.com/jquery-1.9.1.js"></script>)
Member 9815058 25-Mar-13 5:30am    
sorry it's working

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900