4
Ok got the solution,
Pasting it here for rest of the xoopsians..
Add the following lines into the theme.html
1. in section add the following lines
function xoopsGetElementById(id) {
if (document.getElementById(id)) {
return document.getElementById(id);
} else if (document.all[id]) {
return document.all[id];
} else if (document.layers && document.layers[id]) {
return (document.layers[id]);
} else {
return fake_element;
}
}
function toggle_visibility(id, flag) {
if (xoopsGetElementById(id)) {
xoopsGetElementById(id).style.visibility = (flag) ? 'visible' : 'hidden';
}
}
2. Just after add the following code
Loading...
Please Wait. |
3. Just before add the following lines
4. Copy await.gif to you theme/
folder.
Thats done :)
Now everytime your page gets loaded you will see that image (await.gif) and the text loading.
Have fun. I hope some one add it into some faq or doc it.