Teknotit Snipet Manager



Api 2 Git 1 aleatoire 2 animation 1 apache2 4 bash 9 cache 1 css 17 curl 1 fastcgi 2 fichier 1 fonctions 10 html 5 inspiration 1 javascript 17 linux 17 mobile 2 mysql 2 nginx 3 php 21 postfix 2 repertoire 3 ssh 9 swap 1 sysadmin 13 taille 1 ubuntu 7 wordpress 8

.

Creates a new URL by appending or replacing the given query key and value

Creates a new URL by appending or replacing the given query key and value

/**
 * Creates a new URL by appending or replacing the given query key and value.
 * Not supporting URL with username and password.
 * @param {Location} location The original URL.
 * @param {string} key The query parameter name.
 * @param {string} value The query parameter value.
 * @return {string} The constructed new URL.
 */
function setQueryParam(location, key, value) {
  var query = parseQueryParams(location);
  query[encodeURIComponent(key)] = encodeURIComponent(value);

  var newQuery = '';
  for (var q in query) {
    newQuery += (newQuery ? '&' : '?') + q + '=' + query[q];
  }

  return location.origin + location.pathname + newQuery + location.hash;
}

javascript

chrome://resources/js/util.js

<iframe width="100%" height="524" src="http://snipet.teknotit.com/index.php?embed=556bf01fcef33" type="text/html"></iframe>

Texte seul - Permalink - Snippet public posté le 01/06/2015

Flux RSS de cette page


Teknotit Snipet Manager 1.84 par Bronco - Page générée en 0.004 s