TypeError: this.removeField is not a function, Adobe Reader
I am trying to implement a duplicate feature which automatically adds prebuilt sections to the form in PDF
to change position and page of fields i am using this.removeField but its not working in chrome, android, opera
in android it's showing this error `TypeError: this.removeField is not a function, Adobe Reader`
i am using it like this in the code
```
if (this.addScript) {
this.addScript("rmField", function rmField(tag) {
this.removeField(tag);
});
}
```
