$(function() { var link = 'http://translate.google.ru/', checkbox = $('#translateCheckbox')[0]; $('a[href]').click(function() { if(checkbox.checked) { document.location = link + this.href; return false; } }); });