Posts

Showing posts from January, 2018

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/'; }); });