About 121,000 results
Open links in new tab
  1. Document - Web APIs | MDN - MDN Web Docs

    6 days ago · The Document interface describes the common properties and methods for any kind of document. Depending on the document's type (e.g., HTML, XML, SVG, …), a larger API is available: HTML documents, served with the "text/html" content type, also implement the HTMLDocument interface, whereas XML and SVG documents …

  2. Rate limit a javascript function - Stack Overflow

    Nov 27, 2015 · How can I limit a function to only run 10 times per second, but continue execution when new "spots" are available? This means we'd call the function 10 times as soon as possible, and when 1 second has elapsed since any function call we can do another call.

  3. HTML DOM Document write() Method - W3Schools

    document.write("Hello World!"); document.write("<br>"); document.write("Have a nice day!");

  4. javascript - How to change the playing speed of videos in …

    Jun 12, 2010 · To effect all videos use document.querySelectorAll('video').forEach(function(el, i) { el.playbackRate = 1.25; }); Useful for eLearning where there are hidden video tags in the page so effect them all.

  5. JavaScript HTML DOM Document - W3Schools

    The document object represents your web page. If you want to access any element in an HTML page, you always start with accessing the document object. Below are some examples of how you can use the document object to access and manipulate HTML.

  6. javascript - Firestore "set" and maximum write rate to a document ...

    Jul 4, 2019 · According docs there is 1 write per second per document. Official example: db.collection("cities").doc("LA").set({ name: "Los Angeles", state: "CA", country: "USA" })

  7. JavaScript Output - W3Schools

    JavaScript can "display" data in different ways: Writing into an HTML element, using innerHTML or innerText. Writing into the HTML output using document.write(). Writing into an alert box, using window.alert(). Writing into the browser console, using console.log(). To access an HTML element, you can use the document.getElementById(id) method.

  8. Simple Interest Calculator using Javascript - EXAMJILA

    Feb 4, 2023 · Create a HTML Document with JavaScript code that has three Textboxes and a button. The details should be accepted using textboxes are principal, rate of interest, and duration in years. When user clicks the OK Button a message box appears showing the simple interest of principal amount.

  9. Handling rate limiting in JavaScript - Work Life by Atlassian

    May 26, 2023 · Throughout this article, you’ll find code snippets for a JavaScript utility that can be used for making REST API invocations with support for handling rate limiting responses by applying retry policies.

  10. Understanding document.write in JavaScript: Complete Guide

    Nov 8, 2024 · document.write is one of JavaScript’s oldest methods for adding content to web pages. While it’s often discouraged in modern web development, understanding how it works helps you grasp document...

  11. Some results have been removed
Refresh