I like to know how to show message box when refreshing the page....is there anyone to know?
thank you
I like to know how to show message box when refreshing the page....is there anyone to know?
thank you
Hello Vincent Myo,
This is simple code of jquery to show message box when refresh page.
you can apply this code as you require.
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
alert("Hello...");
});
</script>
</head>
<body></body>
</html>
I hope it is useful to you.
Thanks.
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up| Related Posts | Replies | Views | Activity | |
|---|---|---|---|---|
|
0
May 26
|
2 | |||
|
0
May 26
|
8 | |||
|
0
May 26
|
2 | |||
|
0
May 26
|
4 | |||
|
0
May 26
|
69 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
It's not the answer that i like to know...My question is when click the refresh in browser, pos of odoo page can show some comfirm box. Thank you for your answer.