Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. jQuery('.simple_301_redirects table tr').each(function() {
  2. let host = jQuery(this).find('input').eq(0).val();
  3. let destination = jQuery(this).find('input').eq(1).val();
  4. console.log('Redirect 301 ' + host + ' ' + destination);
  5. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement