SOCIALIZE IT

Wednesday 24 July 2013

Popup HTML

<style>
.jeup-btn, input.jeup-btn { color:red!important;}
</style>
<script type="text/javascript" src="js/jquery-1.js"></script>
<script type="text/javascript" src="js/jquery_002.js"></script>
<script type="text/javascript" charset="utf-8">
jQuery(function() {
function launch() {
$('#je-popuplogin').lightbox_me({centered: true, onLoad: function() { $('#je-popuplogin').find('input:first').focus()}});
}
$('#jepopup').click(function(e) {
$("#je-popuplogin").lightbox_me({centered: true, onLoad: function() {
$("#je-popuplogin").find("input:first").focus();
}});
e.preventDefault();
});
});
</script>


<div class="menu">

  <a href="#" id="jepopup" class="jeup-btn">Click</a>


   <div style="left: 50%; margin-left: -210px; z-index: 1002; position: fixed; top: 50%; margin-top: -167px; display: none;" id="je-popuplogin">
      <div style="background:#fff; float:left; width:250px; height:200px; border:1px solid #666666;">
         <div>
           <a id="close-x" href="#">Close</a>
         </div>
         <div style=" padding:20px; ">
            Remember Me
         </div>          
      </div>                  
    </div>

</div>

No comments:

Post a Comment