OPML JavaScript Object Model Updates

There have been some minor updates to the OPML JavaScript Object Model. I have added support for an OPML Attribute which are attached to an Outline. This was done so that it is much more flexible and allows developers to add proper attribute combinations to an Outline. Furthermore, I borrowed an instanceOf method from some site (if you know the site let me know) which enforce some sort of type checking when inserting OPMLOutlineAttributes to the attribute array.


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan

<p>There have been some minor updates to the OPML JavaScript Object Model. I have added support for an OPML Attribute which are attached to an Outline. This was done so that it is much more flexible and allows developers to add proper attribute combinations to an Outline. Furthermore, I borrowed an instanceOf method from some site (if you know the site let me know) which enforce some sort of type checking when inserting OPMLOutlineAttributes to the attribute array.<p />The javascript I borrowed was this:function instanceOf(object, constructor) while (object != null) { if (object == constructor.prototype) return true; object = object.<strong>proto</strong>; } return false; }<p /></p>


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan


Print Share Comment Cite Upload Translate Updates
APA

Paul Kinlan | Sciencx (2005-10-24T00:00:00+00:00) OPML JavaScript Object Model Updates. Retrieved from https://www.scien.cx/2005/10/24/opml-javascript-object-model-updates/

MLA
" » OPML JavaScript Object Model Updates." Paul Kinlan | Sciencx - Monday October 24, 2005, https://www.scien.cx/2005/10/24/opml-javascript-object-model-updates/
HARVARD
Paul Kinlan | Sciencx Monday October 24, 2005 » OPML JavaScript Object Model Updates., viewed ,<https://www.scien.cx/2005/10/24/opml-javascript-object-model-updates/>
VANCOUVER
Paul Kinlan | Sciencx - » OPML JavaScript Object Model Updates. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2005/10/24/opml-javascript-object-model-updates/
CHICAGO
" » OPML JavaScript Object Model Updates." Paul Kinlan | Sciencx - Accessed . https://www.scien.cx/2005/10/24/opml-javascript-object-model-updates/
IEEE
" » OPML JavaScript Object Model Updates." Paul Kinlan | Sciencx [Online]. Available: https://www.scien.cx/2005/10/24/opml-javascript-object-model-updates/. [Accessed: ]
rf:citation
» OPML JavaScript Object Model Updates | Paul Kinlan | Sciencx | https://www.scien.cx/2005/10/24/opml-javascript-object-model-updates/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.