Click here to Skip to main content
15,908,115 members

Comments by u mani (Top 40 by date)

u mani 19-Jun-15 3:34am View    
yes thank u very much
u mani 19-Jun-15 3:03am View    
thanks for replay.. how to update in the table ?
u mani 6-Jun-15 5:53am View    
Hi Tadit Dash ,
thanks for reply ,
i have tried but not working , current tab is not closing after a button click .. Please tell me how to do
u mani 3-Jun-15 6:44am View    
otherwise i open perticular page it should be open in new window of particular size
u mani 3-Jun-15 6:42am View    
<script language="javascript" type="text/javascript">

var win = null;
function NewWindow(mypage, myname, w, h, scroll, pos) {
if (pos == "random") { LeftPosition = (screen.width) ? Math.floor(Math.random() * (screen.width - w)) : 100; TopPosition = (screen.height) ? Math.floor(Math.random() * ((screen.height - h) - 75)) : 100; }
if (pos == "center") { LeftPosition = (screen.width) ? (screen.width - w) / 2 : 100; TopPosition = (screen.height) ? (screen.height - h) / 2 : 100; }
else if ((pos != "center" && pos != "random") || pos == null) { LeftPosition = 0; TopPosition = 20 }
settings = 'width=' + w + ',height=' + h + ',top=' + TopPosition + ',left=' + LeftPosition + ',scrollbars=' + scroll + ',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win = window.open(mypage, myname, settings);
}

</script>


YourLinkText



this code i have used , but when i open one page it should be in new window ,please tell me how to do