Enable Spell Check In Form

Forums Classic DFFS Enable Spell Check In Form

Viewing 1 reply thread
  • Author
    Posts
    • #35586
      SteveE
      Participant

      The spell check that comes with SharePoint isn’t ideal. Why not just use the one that is in the browser? Well it doesn’t read the input fields in SharePoint.

      There’s a simple script you can add to custom JS that will enable the browser spell check in the input fields. It will underline the misspelled word and give you options if you right click, just like it’s supposed to.

      Here’s the simple script:

      function dffs_ready(){
      jQuery(document.getElementById(‘onetIDListForm’).setAttribute(“spellcheck”,”true”));
      }

      I wrapped it in dffs_ready because it doesn’t always load in time otherwise. Enjoy!

    • #35615
      Alexander Bautz
      Keymaster

      Good tip – thanks for sharing.

      Alexander

Viewing 1 reply thread
  • You must be logged in to reply to this topic.