jQuery outerHeight()

jQuery innerHeight() method returns the inner height of the selected element. Border and padding both are included in this method. Syntax: $(selector).outerHeight(includeMargin) includeMargin: This parameter accepts Boolean value to specify whether the margin is to include or not. False: Not to include the margin. True: To include the margin. Example1: <!DOCTYPE html> <html> <head> <script … Read more