Untitled

 avatar
unknown
plain_text
3 years ago
713 B
6
Indexable
        console.log('mas andre genit')
        $.ajax({
            url:'/encrypt',
            type:'post',
            data:{
                data:'mas andre genit'
            },
            success: function(response){
                console.log(response)
                $.ajax({
                    url:'/decrypt',
                    type:'post',
                    data:{
                        data:response
                    },
                    success: function(response){
                        console.log(response)
                    },
                    error: function(){

                    }
                })
            },
            error: function(){

            }
        })
Editor is loading...