Guest User

Untitled

a guest
Apr 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <script type="text/javascript" charset="utf-8">
  2. $(document).ready(function(){
  3. $('a[rel*=facebox]').facebox({
  4. loading_image : 'loading.gif',
  5. close_image : 'closelabel.gif'
  6. });
  7. $('#project_form').submit(function(){
  8. $.post(
  9. 'new_project.php',
  10. $('#project_form').serialize(),
  11. function(data){
  12. $.facebox(data);
  13. }
  14. );
  15. return false;
  16. });
  17. });
  18. </script>
Add Comment
Please, Sign In to add comment