Sort Score
Result 10 results
Languages All
Labels All
Results 751 - 760 of 23,250 for

js

(0.09 sec)
  1. JavaScript performance optimization - Learn web...

    It is very important to consider how you are using JavaScript on your websites and think about how to mitigate any performance issues that it might be causing. While images and video account for over 70% of the bytes downloaded for the average website, byte per byte, JavaScript has a greater potential for negative performance impact — it can significantly impact download times, rendering performance, and CPU and battery usage. This article introduces tips and techniques for optimizing JavaScript to enhance the performance of your website....js"></script> ... </head> This works...rel="preload" href="important-js.js" as="script" /> <!-- Preload...

    developer.mozilla.org/en-US/docs/Learn/Performa...
  2. Vue conditional rendering: editing existing tod...

    This article has been fairly intense, and we covered a lot here. We've now got edit and delete functionality in our app, which is fairly exciting. We are nearing the end of our Vue series now. The last bit of functionality to look at is focus management, or put another way, how we can improve our app's keyboard accessibility....your existing isDone data point: js data() { return { isDone: this...right below your data() property: js methods: { deleteToDo() { this...

    developer.mozilla.org/en-US/docs/Learn/Tools_an...
  3. ClipboardItem - Web APIs | MDN

    Learn about the ClipboardItem interface, including its constructor, properties, and methods, code examples, specifications, and browser compatibility.... js async function writeClipImg()...the corresponding blob object. js async function getClipboardContents()...

    developer.mozilla.org/en-US/docs/Web/API/Clipbo...
  4. Express Tutorial Part 3: Using a Database (with...

    In this article, we've learned a bit about databases and ORMs on Node/Express, and a lot about how Mongoose schema and models are defined. We then used this information to design and implement Book, BookInstance, Author and Genre models for the LocalLibrary website....js/JavaScript) Next This article...promise-based ORM for Node.js and io.js. It supports the dialects...

    developer.mozilla.org/en-US/docs/Learn/Server-s...
  5. content/files/en-us/web/html/element/input/colo...

    The content behind MDN Web Docs. Contribute to mdn/content development by creating an account on GitHub....over time to the color value: ```js colorPicker.addEventListener("input"...appropriately in either case. ```js colorPicker.select(); ``` ##...

    github.com/mdn/content/blob/main/files/en-us/we...
  6. TextDecoder - Web APIs | MDN

    Learn about the TextDecoder interface, including its constructor, properties, and methods, code examples, specifications, and browser compatibility.... js let utf8decoder = new TextDecoder();...appropriate for Cyrillic script. js const win1251decoder = new T...

    developer.mozilla.org/en-US/docs/Web/API/TextDe...
  7. Network Information API - Web APIs | MDN

    The Network Information API provides information about the system's connection in terms of general connection type (e.g., 'wifi, 'cellular', etc.). This can be used to select high definition content or low definition content based on the user's connection.... js let type = navigator.connection...NetworkInformation.effectiveType property. js let preloadVideo = true; const...

    developer.mozilla.org/en-US/docs/Web/API/Networ...
  8. HTMLInputElement: setSelectionRange() method - ...

    Learn about the HTMLInputElement.setSelectionRange() method, including its syntax, code examples, specifications, and browser compatibility.... Syntax js setSelectionRange(selectionStart...ect text</button> JavaScript js function selectText() { const...

    developer.mozilla.org/en-US/docs/Web/API/HTMLIn...
  9. FileList - Web APIs | MDN

    Learn about the FileList interface, including its properties and methods, specifications and browser compatibility....node's file list as a File object: js const file = document.getEle...0; height: 200px; } JavaScript js const output = document.querySelector("...

    developer.mozilla.org/en-US/docs/Web/API/FileList
  10. SyntaxError: character class escape cannot be u...

    The JavaScript exception "character class escape cannot be used in class range in regular expression" occurs when a Unicode-aware regular expression pattern contains a character class where a boundary of a character range is another character class, such as a character class escape.... Examples Invalid cases js /[\s-_]/u; // \s is a character...classes can be nested Valid cases js // Put the hyphen at the start...

    developer.mozilla.org/en-US/docs/Web/JavaScript...