If I only have a reference to document.getElementById('btn_test'), how can I get a reference to that first checkbox input element using only Javscript. Maybe a parent.parent? What is a safe way?
<td>
<input type="checkbox" name="text_rnd_input"/>
<label>
<button id="btn_test" type="button">
</button>
</label>
</td>