Jquery

jQuery Intro

jQuery Intro Quiz

jQuery Intro Exercise

jQuery Basic

jQuery Basic Quiz

jQuery Basic Exercise

jQuery Advance

jQuery Advance Quiz

jQuery Advance Exercise

jQuery Selectors

jQuery Effects

jQuery Events

jQuery Methods and Properties

jQuery Traversing

jQuery CSS and HTML Methods

Dimensions in jQuery

width()

 

The width() method is used to set or return the width of the selected elements.

 

Syntax:-

 

Its syntax is:- $(selector).width(value) OR $(selector).width(function(index,currentheight))

 

Further Explanation:-

 

Parameter Description
value Required for setting width.
function(index,currentwidth) Optional. Specifies a function that returns the new width of selected elements
  • index - Returns the index position of the element in the set
  • currentwidth - Returns the current width of the selected element

 

height()

 

The height() method is used to set or return the height of the selected elements.

 

Syntax:-

 

Its syntax is:- $(selector).height(value) OR $(selector).height(function(index, currentheight))

 

Further Explanation:-

 

Parameter Description
value Required for setting height.
function(index,currentheight) Optional. Specifies a function that returns the new height of selected elements
  • index - Returns the index position of the element in the set
  • currentheight - Returns the current height of the selected element

Code Explanation

All Tutorials related to jQuery Basic

All Sections related to Jquery