readyState Property--------------------------------------------------------------------------------Retrieves the current state of the object.SyntaxHTML N/A 
Scripting [ sState = ] object.readyState Possible ValuessState String that receives one of the following values:uninitialized Object is not initialized with data. 
loading Object is loading its data. 
loaded Object has finished loading its data. 
interactive User can interact with the object even though it is not fully loaded. 
complete Object is completely initialized. 
 The property is read-only. The property has no default value.ResAn object's state is initially set to uninitialized, and then to loading. When data loading is complete, the state of the link object passes through the loaded and interactive states to reach the complete state. The states through which an object passes is determined by that object; an object can skip certain states (for example, interactive) if the state does not apply to that object.