• Home

  • Custom Ecommerce
  • Application Development
  • Database Consulting
  • Cloud Hosting
  • Systems Integration
  • Legacy Business Systems
  • Security & Compliance
  • GIS

  • Expertise

  • About Us
  • Our Team
  • Clients
  • Blog
  • Careers

  • CasePointer

  • VisionPort

  • Contact
  • Our Blog

    Ongoing observations by End Point Dev people

    Not so popular JavaScript/HTML functionalities

    Piotr Hankiewicz

    By Piotr Hankiewicz
    August 7, 2015

    There are multiple things in a front-end developer work that can be easily fixed by a native browser functions. Based on experience, JavaScript learning path for a big part of front-end developers is not perfect. Therefore, I will give you some examples, for some people as a reminder, for others as a new thing to think about. It is always good to learn, right?

    document.execCommand

    W3C definition

    It lets you use built-in browser functions as you wish from JavaScript, simple functions to do simple things. execCommand is very useful when you work with text ranges selected by a user. It’s also popular that it comes together with a contentEditable HTML element attribute.

    Practical examples

    • You want to have redo button in your application, so when user will click on it, the latest changes will be discarded.
    // after running just this, the latest user changes will be discarded (text input changes)
    execCommand('redo', false, null);
    
    • You want to remove text after the cursor position.
    // after running this script one character after the cursor
    // position in a current element will be removed
    execCommand('forwardDelete', false, null);
    

    There are more than 30 functions (look here) that can be used with a limited amount of code. You need to be careful though, keep on testing, multiple browsers have different implementations, but will be unified in the future.

    document.designMode

    W3C definition

    I want you to make a small experiment. On the current page please open developer console (Firebug or DevTools) and try to run this code:

    document.designMode = 'on';
    

    Have you noticed anything? What has happened now is that the whole page is editable now, you can edit any paragraph of this page, any header, any link. It’s not so practical anymore as you can’t run this command on any element, only on the Document object, but it’s cool to know that stuff like this exists. Every HTML element has a contentEditable attribute set now with a value set to true.

    element.contentEditable

    W3C definition

    “contentEditable” attribute can be set to any HTML document element. What it does is it makes element editable or not. By default, every HTML element is not editable, you can easily change it by setting contentEditable attribute value to true like this:

    document.getElementById('word-open').contentEditable = 'true';
    

    If you will again run this script on the current page you will be able to edit big slogan on the left side of this text, well, only the “OPEN” word. This can be extremely useful when you need to build an online rich text editor.

    W3C definition

    Navigator object is not standardized yet by W3C but it’s supported by around 90% of the global browsers (known and popular browsers not supporting it are IE8 and Opera Mini). It contains multiple client browser information. For example:

    // will return a list of supported/installed browser plugins, you can
    // check if the user has the Flash software installed, or to check if user uses Ad-block plugin
    console.log(navigator.plugins);
    
    // will return a geolocation object, you can track client geo position
    console.log(navigator.geolocation);
    
    // will return a browser engine name, useful when you need to check it instead
    // of a browser name
    console.log(navigator.engine);
    

    Conclusion

    I recommend everyone interested in the front-end development to go through W3C standardization documents, read it chapter by chapter. There are resources not widely popular but very helpful.

    html javascript


    Comments