You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Get the current coordinates of the first element in the set of matched elements, relative to the document.
1036
+
*/
1037
+
offset(): JQueryCoordinates;
1038
+
/**
1039
+
* An object containing the properties top and left, which are integers indicating the new top and left coordinates for the elements.
1040
+
*
1041
+
* @param coordinates An object containing the properties top and left, which are integers indicating the new top and left coordinates for the elements.
1042
+
*/
1043
+
offset(coordinates: JQueryCoordinates): JQuery;
1044
+
/**
1045
+
* An object containing the properties top and left, which are integers indicating the new top and left coordinates for the elements.
1046
+
*
1047
+
* @param func A function to return the coordinates to set. Receives the index of the element in the collection as the first argument and the current coordinates as the second argument. The function should return an object with the new top and left properties.
0 commit comments