to redirect a url using jquery

 $(document).ready(function() {  
//jQuery( document ).ready(function($) { 

$('.agree').click(function (e) {
e.preventDefault();
window.location.href = 'http://www.google.com/';
});

});

Comments