Hi everybody,
I want to put a Loading… in my page… I have a code here, but appears like 234.643 bytes… how do I do something like
23Kb of 150Kb total ?
Hi everybody,
I want to put a Loading… in my page… I have a code here, but appears like 234.643 bytes… how do I do something like
23Kb of 150Kb total ?
I don’t know how you set your code up, but what you want to do is something like this. You need to divide your loading variable by 1000 to convert it to KB and use the Math.round function to eliminate the decimals.
Hope this helps
just add these lines of code:
bytesloaded = Math.round(bytesloaded/1024);
yourtextbox = bytesloaded+"Kb of "+totalbytes+“Kb total”
the first line round the number up and the second displays it in the textbox! Just replace “bytesloaded” with the cariable with the value of the bytes loaded and “yourtextbox” with the variable-name of da textbox where you want the text to be displayed and “totablytes” with the variable with the value of the total bytes!
:: Copyright KIRUPA 2024 //--