Click here to Skip to main content
15,886,919 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
in my project open a browser right corner open a window using jquery anyone one known the solution pls kindly help to me


What I have tried:

i tried serach in google no solution i am not see
Posted
Updated 17-Sep-17 21:48pm
Comments
Richard MacCutchan 18-Sep-17 3:38am    
Most likely because your question makes no sense.
MohamedEliyas 18-Sep-17 3:43am    
in my site open when automatically open a box. in your system datetime near bottomside open a window i hope u understand

1 solution

<html>
<head>
<script>
function foo()
{
window.open("", "", "width=200,height=100");
}
</script>
</head>
<body>
<button onClick="foo();">Hello</button>
</body>
</html>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900