Advertisement
Guest User

Untitled

a guest
May 19th, 2011
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function W3C_validation() {
  2.     $.get(window.location.href, function (data) {
  3.         $('<form />', {action: 'http://validator.w3.org/check', method: 'POST', enctype: 'multipart/form-data', target: '_top', css: {display: 'none'}})
  4.             .append($('<input />', {type: 'hidden', name: 'fragment', value: data}))
  5.             .append($('<input />', {type: 'hidden', name: 'prefill', value: '0'}))
  6.             .appendTo($('body'))
  7.             .submit()
  8.             .remove();
  9.     });
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement