14 lines
447 B
JavaScript
14 lines
447 B
JavaScript
|
// helper script that will read out the url parameters
|
||
|
// and store them in appropriate form fields on the page
|
||
|
(function() {
|
||
|
var regex = /(\w+)=(\w+)/g;
|
||
|
var search = decodeURIComponent(location.search);
|
||
|
while (match = regex.exec(search)) {
|
||
|
var name = match[1];
|
||
|
var value = match[2];
|
||
|
var els = document.querySelectorAll('input[name="'+name+'"]');
|
||
|
for (var i=0; i<els.length; i++) {
|
||
|
els[i].value = value;
|
||
|
}
|
||
|
}
|
||
|
})();
|