Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).on('blur', '.edit_descr > span', function(event){
- event.preventDefault();
- /* Act on the event */
- var descricao = $(this).text();
- var metodo_id = $(this).data("metodo_id");
- if(descricao && metodo_id){
- if(confirm("Deseja realmente atualizar a descrição desta função no sistema?") == true){
- $.ajax({
- url: '/permissoes/alterardescricao', type: 'POST', dataType: 'json',
- data: {descricao: descricao, metodo_id: metodo_id},
- success: function(ret){
- console.log(ret);
- }
- });
- }
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement