Answers for "jquery :"

2

jquery

npm install jquery
Posted by: Guest on May-06-2020
-1

jquery

$.ajax({
    url: 'https://reqres.in/api/users',
    success: function(respuesta) {
        console.log(respuesta);
    },
    error: function() {
        console.log("No se ha podido obtener la información");
    }
});
Posted by: Guest on March-11-2021

Browse Popular Code Answers by Language