Page 1 of 1

POP UP WINDOW FOR MY DASHBOARD

PostPosted: Thu May 17, 2012 10:53 am
by samhans
Hai friends and steve,

a simple query, how i could add pop up message in a dashboard, to inform users of certain things when they logs in in my website.



thanks for reply in advance


---samhans

Re: POP UP WINDOW FOR MY DASHBOARD

PostPosted: Thu May 17, 2012 11:23 am
by shannah
You could use a javascript alert.

e.g.
Code: Select all
<script>
alert('Welcome to my site');
</script>

Re: POP UP WINDOW FOR MY DASHBOARD

PostPosted: Thu May 17, 2012 11:31 am
by samhans
steve,
i want to add images and colorful text in my pop up so that it become attractive. i think it is not possible using alert box.

Re: POP UP WINDOW FOR MY DASHBOARD

PostPosted: Thu May 17, 2012 11:47 am
by shannah
Use the jQuery dialog function.
http://jqueryui.com/demos/dialog/

-Steve