Не очень получается, делаю так.
Страница 1.
<div id="anxx">
<button name="writead" class="j-submit-reportad">Загрузить</button>
</div>
<script>
var a = document.getElementById('anxx');
a.onclick = function (e) {
e.preventDefault();
localStorage.setItem('click', 'input#r-uni1');
window.location.href = 'http://l-c.by/testduncen';
}
</script>
Страница 2.
<div class="button-inline"><input class="button-type-pr" checked="checked" id="r-mini3" name="typerulon" type="radio" value="2">
<label for="r-mini3"><a class="css-tooltip-top color-red help-btn"></a>Свободновисящие MINI</label></div>
<div class="button-inline"><input class="button-type-pr" id="r-uni1" name="typerulon" type="radio" value="0">
<label for="r-uni1"><a class="css-tooltip-top color-red help-btn"></a>Кассетные UNI-1</label></div>
<div class="button-inline"><input class="button-type-pr" id="r-uni2" name="typerulon" type="radio" value="1">
<label for="r-uni2"><a class="css-tooltip-top color-red help-btn"></a>Кассетные UNI-2</label></div>
<script>
// на другой странице
(function () {
var id = localStorage.getItem('click');
var input = document.getElementById(id);
})();
</script>
Помогите разобраться пожалуйста.