Skip to content

Instantly share code, notes, and snippets.

@jbsarrodie
Created September 6, 2018 19:26
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbsarrodie/c9f5b590f11f8ce084a539c2382fa3da to your computer and use it in GitHub Desktop.
Save jbsarrodie/c9f5b590f11f8ce084a539c2382fa3da to your computer and use it in GitHub Desktop.
#jArchi script to delete a property on a selection of objects
var propName = window.prompt("Which property do you want to remove (leave empty to cancel)?", "");
if (propName) {
$(selection).removeProp(propName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment