jQuery: removeProp

This commit is contained in:
johnnyreilly
2013-12-29 21:29:55 +00:00
parent 9f7b30fce9
commit 3f51b9c7b2
+5
View File
@@ -849,6 +849,11 @@ interface JQuery {
*/
removeClass(func: (index: number, className: string) => string): JQuery;
/**
* Remove a property for the set of matched elements.
*
* @param propertyName The name of the property to remove.
*/
removeProp(propertyName: string): JQuery;
/**