Category: HTML API

  • HTML5 Server-Sent Event

    The HTML5 server-sent event enables a browser to receive automatic updates and data from a server via HTTP connections. What are the Server-Sent Events? Whenever we perform some event and send it to the server such as by submitting the form to the server. So such type of event which flows from web browser to…

  • HTML5 Web Workers

    The Web Workers are the separate JavaScript code which runs in the background of the web page without affecting the user Interface. What is Web Worker? Everyone wants a website or application which work fast and can execute multiple operations simultaneously without affecting the performance of the page. However, sometimes we experience some delay response…

  • HTML5 Geolocation

    The Geolocation is one of the best HTML5 API which is used to identify the user’s geographic location for the web application. This new feature of HTML5 allows you to navigate the latitude and longitude coordinates of the current website’s visitor. These coordinates can be captured by JavaScript and send to the server which can…

  • HTML Drag and Drop

    HTML Drag and Drop (DnD) is a feature of HTML5. It is a powerful user interface concept which is used to copy, reorder and delete items with the help of mouse. You can hold the mouse button down over an element and drag it to another location. If you want to drop the element there, just release…