hs.Expander.prototype.close
Close the current hs.Expander.
void hs.Expander.prototype.close()
When used within a hs.Expander object, this.close() closes it.
Details
Type |
function |
Returns |
void |
Example
Close the image expander on mouse out.
This example requires Events in the download configuration.
Define the onMouseOut event handler in the head section of your page.
hs.Expander.prototype.onMouseOut = function () {
this.close();
}
The effect:
See also