Advertisement
Aurangajeb

Append/Show wpuf-info message on the last of the wpuf form

Apr 10th, 2021
1,251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2. Append wpuf-info message on the last of the wpuf form
  3. **/
  4.  
  5. <script type="text/javascript">
  6.  
  7. jQuery(document).ready(function( $ ) {
  8.     $(".wpuf-info").each(function() {
  9.         $(this).parent().append(this);
  10.     });
  11. });
  12.  
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement