popup window in mobile web page
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
hi all i am developing a PDA application. i want to have a popup window to display the help. i have done it in javascript function function show_popup() { var p=window.createPopup(); var pbody=p.document.body; pbody.style.backgroundColor="lime"; pbody.style.border="solid black 1px"; pbody.innerHTML="This is a pop-up!Click outside the pop-up to close. cool"; p.show(0,0,200,50,document.body); return false; } it works fine when i view it in browser but not working on pocket pc emulator please help me in this regard if u guys have better soloution. how can i popup a window in mobile web page thanx in advance saud