From 3f51b9c7b2c351137bd51e69eb0a6cdcb9322fdc Mon Sep 17 00:00:00 2001 From: johnnyreilly Date: Sun, 29 Dec 2013 21:29:55 +0000 Subject: [PATCH] jQuery: removeProp --- jquery/jquery.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/jquery/jquery.d.ts b/jquery/jquery.d.ts index 522b8d1bc..4f16a03f9 100644 --- a/jquery/jquery.d.ts +++ b/jquery/jquery.d.ts @@ -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; /**