Script Tag:::
$(“#Button1”).jqxButton({ width: ‘150’ });
$(“#Button1″).on(‘click’, function () {
$(‘#Cust_window’).jqxWindow(‘Show’);
$(‘#Cust_window’).jqxWindow({
showCollapseButton: true, height: 150, width: 750,showCloseButton:true
});
});
Window Div ::::
<div id=”Cust_window”>
<div>My Window</div>
<div style=”overflow:hidden” >
<table align=”center”>
<tr align=”left”>
<td > Name</td> <td/>
<td ><input id=”Cust_Name” value=”Cust_Name” /></td>
<td/>
<td > Designation </td> <td/>
<td><input id=”Cust_Desig” value=”Cust_Desig” /></td>
<td/>
</tr>
</table>
</div>
But the div is visible even on page load . I need the div to be visible only when the button1 is clicked. Please help