Ask Question Forum:
Model Library:2025-02-08:A.I. model is online auto reply
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by duncanb7
at 2024-04-14 02:35:58
Point:500 Replies:5 POST_ID:828472USER_ID:11059
Topic:
JavaScript;Hypertext Markup Language (HTML);Web Servers
Everyday, I will download my data to my domain, and because of file size is big so might need
a few minutes to finish that is no problem at all for me . But for the viewer or user I found when users
lauch my domain site and view html page the display is really bad, all CSS style display is abnormal and
finally I found out the reason because the webpage is being download and html page is too big.
in other words during the ftp download, if web the html page the display will be like ghost image.
So the question is how to make sure the user is lauch the html page in complete stage.
Any method to let user to web the page is not in donwloading version. Even web the
page is in delay or old version is much better the downloading version.
I am trying to reduce the size of html page but it is hard since there is a lot of big table,
I prefer the user view the old version instead of incomplete or donwloading version of the html page
IS it server will handle this to make sure the viewer or user to view complete of html page ?
Please advise
Ducan
a few minutes to finish that is no problem at all for me . But for the viewer or user I found when users
lauch my domain site and view html page the display is really bad, all CSS style display is abnormal and
finally I found out the reason because the webpage is being download and html page is too big.
in other words during the ftp download, if web the html page the display will be like ghost image.
So the question is how to make sure the user is lauch the html page in complete stage.
Any method to let user to web the page is not in donwloading version. Even web the
page is in delay or old version is much better the downloading version.
I am trying to reduce the size of html page but it is hard since there is a lot of big table,
I prefer the user view the old version instead of incomplete or donwloading version of the html page
IS it server will handle this to make sure the viewer or user to view complete of html page ?
Please advise
Ducan
Author: duncanb7 replied at 2024-04-29 07:31:58
Thanks for all of your reply,
I try to do less ftp to my server
and using more php program
at server to reduce the ftp loading
I try to do less ftp to my server
and using more php program
at server to reduce the ftp loading
Assisted Solution
Expert: legland_s replied at 2024-04-14 03:28:53
166 points GOOD
using jquery
and something like :
$(document).ready(function(){ //If yuo want to load it immediatly. Anyway you execute this code after an event
$.get("file.html", //Make an ajax request to this file
function(data){ //data is the file.html content
$("table").append(data); //Or other operations like this to inject the html content into the table
})
})
Author: duncanb7 replied at 2024-04-14 03:24:38
you can use Ajax to show up a short html waiting page, and load datas and arrays asynchronously
But How ? Please expert
But How ? Please expert
Assisted Solution
Expert: h4mi replied at 2024-04-14 03:19:24
167 points GOOD
Accepted Solution
Expert: legland_s replied at 2024-04-14 03:09:27
167 points GOOD
you can use Ajax to show up a short html waiting page, and load datas and arrays asynchronously