closing a jquery overlay
Posted
by rolando
on Stack Overflow
See other posts from Stack Overflow
or by rolando
Published on 2010-04-08T14:31:59Z
Indexed on
2010/04/08
14:33 UTC
Read the original article
Hit count: 288
Hi, So i have this:
<div id="prompt2" class="simple_overlayFondoBlanco" style="padding: 5px 5px 5px 5px">
<asp:UpdatePanel runat="server" ID="upClausulas">
<ContentTemplate>
//....other controls
<a href="#" id="lbCancelar" class="contratacionVinculos close">Cancelar</a>
</ContentTemplate>
</asp:UpdatePanel>
</div>
and i have this jquery function:
<script type="text/javascript">
function pageLoad() {
var triggers = $("button.modalInput").overlay({
// some expose tweaks suitable for modal dialogs
expose: {
color: '#333',
loadSpeed: 200,
opacity: 0.3,
zIndex: 99
},
top: '15%',
closeOnClick: false
});
}
</script>
so the "
What can i do? Thank you.
© Stack Overflow or respective owner