Simple jQuery Autocomplete for SharePoint 2013 forms

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery UI Autocomplete - Default functionality</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script>
  $(function() {
    var availableTags = [
      "ActionScript",
      "AppleScript",
      "Asp",
      "BASIC",
      "C",
      "C++",
      "Clojure",
      "COBOL",
      "ColdFusion",
      "Erlang",
      "Fortran",
      "Groovy",
      "Haskell",
      "Java",
      "JavaScript",
      "Lisp",
      "Perl",
      "PHP",
      "Python",
      "Ruby",
      "Scala",
      "Scheme"
    ];
    $( "#tags" ).autocomplete({
      source: availableTags
    });
  });
  </script>
</head>
<body>
 
<div class="ui-widget">
  <label for="tags">Tags: </label>
  <input id="tags">
</div>
 
 
</body>
</html>

“Use default gateway on remote network” on Windows 10

When creating a VPN connection on a client machine default settings for VPN is “Use default gateway on remote network”. Currently, on Windows 10 the TCP/IPv4 properties are greyed out because of some bug 🙂 The problem is that you cannot change those IPv4 settings in classic Properties window. Here is a simple solution:

 

  • Navigate to “C:\Users\[USER]\AppData\Roaming\Microsoft\Network\Connections\Pbk”
  • Open “rasphone” in text editor (eg. Notepad) and you will see well-structured config file divided by connections
  • Find you VPN config part and change the following value “IpPrioritizeRemote” to zero
  • Reconnect!