| width ( function ( index, width ) ) | ใข้กำหนดค่า ความกว้าง ให้กับ ทุก element ภายใน set |
|---|
syntax:width ( function ( index, width ) )
return type:void, element
content:ใข้กำหนดค่า ความกว้าง ให้กับ ทุก element ภายใน set
example:$("div").width ( function ( index, width ) { if ( index % 2 == 0 ) { return "80px"; }else{ return "120px"; } } );