Reputation: 1624
I am quite new in HTML5 and I am looking for docs and examples in relation to access to native code from HTML5 app. Basically, I have a compile dll that need to be access by HTML5 code.
Upvotes: 1
Views: 447
Reputation: 30
There is no way to do this directly from HTML5. HTML5 is a mark-up language, used to denote structure and content in a semantically correct way. To access anything programmatically from it, you need to use an additional language. JavaScript is used client side, where as a server-side language will need to be used to access something like a dll file.
tl;dr -- This is not possible using only HTML5.
Upvotes: 1