hi dude...
I have doubt in jquery popup. please clear to me..
My doubt is when i close the popup the popup alone reset How it is possible....
My code detail....
1.my popup is autoopen.
2.press escape popup will be close
3.my website have two button sign in and signup....
when i click sign up or sign in didnot open properly
$
("#login").dialog(
{
width : 500,
height: 650,
show: 'clip',
hide: 'clip',
modal:true,
autoOpen : true,
resizable: false,
closeOnEscape:false,
open: function(){
jQuery('.ui-widget-overlay').bind('click',function(){
jQuery('#login').dialog('destroy'); //instead of i use close (it is also not work proper;ly)
});
$(document).on("click", "#clk_signinbtn", function()
{
$("#login").dialog("open");
$("#signin_popup").show();
});
$(document).on("click", "#clk_signupbtn", function()
{
$("#login").dialog("open");
$("#signup_popup").show();
});
here hide function not work properlly
can u help me...
i want proper open a dialog when i am clicking button also...