Jump to content

georgene

Members
  • Posts

    15
  • Joined

  • Last visited

georgene's Achievements

Newbie

Newbie (1/14)

  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

0

Reputation

  1. Answer to this post https://www.helionet.org/index/topic/43430-have-my-ricky-account-again/ but I know you won't see it because is marked as "solved": I know for sure that I had the Georgene account. I started this query with it https://www.helionet...r-for-heliohost/ on which it shows that I was a guest because my account was deleted. For some reason I had two accounts: georgene and georgeneal. Anyways, thanks for unarchiving my ricky account.
  2. I know for sure that I had the Georgene account. I started this query with it https://www.helionet.org/index/topic/42723-brave-verified-creator-for-heliohost/ on which it shows that I was a guest because my account was deleted. For some reason I had two accounts: georgene and georgeneal. Anyways, thanks for unarchiving my ricky account.
  3. May I have my Ricky account back. Username: georgene I also lost my helionet account with the same username and recreated it. But by accident I used the wrong email address. I lost my previous posts which I guess is normal but I don't know if it is possible to unarchive it and get everything back. Thank you for your help.
  4. It finally works . Thank you so much for your time and expertise. It is very appreciated.
  5. Fyi the random html you saw earlier is my the main page of test.dogily.us.to/index.php which for some reason shows up when the asked url isn't a file (weirdly 404.shtml doesn't show up)
  6. my bad, I changed it to php because the rest of my files are php http://test.dogily.us.to/pingpong.php
  7. I included the jquery.min.js directly from google CDN <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">but it still not working (I'm so sorry for wasting your time )
  8. Do you know how to make a loading gif that disapears when loading is done? Btw, I am very noob, if you couldn't tell.
  9. Thank you for you help. I guess stack overflow isn't always right.
  10. I am really sorry, but I don't know which "<" you are talking about. Can you tell me which line? Thank you
  11. http://test.dogily.us.to/images I was just testing the loading gif so there is no real body except a hand image on the top left.
  12. But it still doesn't disapear when the page is done loading
  13. <html> <div id="loading"></div> <div id="realbody"> //my real body here </div> </html> <style type="text/css"> #loading { background: url('my-loading-gif.gif') no-repeat center center; position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 9999999; }</style> <script> function hideLoader() { $('#loading').hide(); } $(window).ready(hideLoader); // Strongly recommended: Hide loader after 20 seconds, even if the page hasn't finished loading setTimeout(hideLoader, 20 * 1000); </script> I wanted to have a gif that is presented when my website is loading and I found this code online. But when I tried it, it played over the real body and didn't leave when my page had finished loaded.
×
×
  • Create New...