.innerHeight()
	
	
		FuncUnit.prototype.innerHeight
	
	
	
	 
innerHeight([innerHeight] [,timeout] [,success] [,message])
Gets an element's innerHeight or waits until it equals a specified value.
// gets the innerHeight
F("#foo").innerHeight();
// waits until the innerHeight is 100
F("#foo").innerHeight(100)
Parameters
- 
			innerHeight{Number | function()}OptionalIf provided uses this as a check before continuing to the next action. Or you can provide a function that returns true to continue to the next action. 
- 
			timeout{Number}Optionaloverrides FuncUnit.timeout. If provided, the wait will fail if not completed before this timeout. 
- 
			success{function()}Optionala callback that will run after this action completes. 
- 
			message{String}Optionalif provided, an assertion will be passed when this wait condition completes successfully 
Returns
{String | funcUnit}
		if innerHeight is provided, returns the funcUnit selector for chaining, otherwise returns the innerHeight of the selector.