Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- jQuery(document).ready(function(){
- jQuery('#setting-add-fanfic').submit(function(){
- var dados = jQuery(this).serialize();
- jQuery.ajax({
- type: "POST",
- url: "<?php echo base_url("functions_extra/post.php"); ?>",
- data: dados,
- success: function( data ){
- $('#alert').html('<?php echo $wo['lang']['success'];?>');
- }
- });
- return false;
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement