Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. jQuery(document).ready(function($) {
  2. $('#edit').submit(function(e) {
  3. e.preventDefault();
  4. var id = "<?php echo $this->getData('block_id'); ?>";
  5. var type = $('#type').val();
  6. var content = $('#field').val();
  7.  
  8. var dataString = 'id=' + id + '&field=' + content + '&type' + type;
  9.  
  10. $.ajax({
  11. type: "POST",
  12. url: "<?php echo SITE_PATH; ?>application/cms/edit.php" ,
  13. data: dataString,
  14. cache: false,
  15. success: function (html) {
  16. $('#cboxLoadedContent').html(html);
  17. }
  18. });
  19. });
  20.  
  21. $('#colorbox_cancel').live('click', function (e){
  22. e.preventDefault();
  23. });
  24.  
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement