123456789101112131415161718192021222324252627282930313233343536 |
- // axios
- // axios.get('http://172.105.205.52:8000/courses?tag_string=(2)')
- // .then(function (response) {
- // console.log(response);
- // });
- // axios.post('/user', {
- // firstName: 'Fred',
- // lastName: 'Flintstone'
- // }).then(function (response) {
- // console.log(response);
- // })
- // jquery
- // $.ajax('http://172.105.205.52:8000/tags', {
- // type: 'GET', // http method
- // success: function (res) {
- // console.log(res);
- // },
- // error: function (err) {
- // console.log(err);
- // }
- // });
- // $.get("date-time.php", function(data){
- // console.log(res);
- // });
- $(".slider1").slick({
- dots:true,
- dotsClass:'slick-dots',
- speed:1000,
-
- });
|