Ethiotelecom Logo

Course Price

149 Birr

    Introduction To HTML & CSS

    beginner-friendly

    project based

    3 hours on-demand video


Course Price

249 Birr

    JavaScript Web Testing with Cy...

    • Get started with web testing
    • Downloadable resources
    • Hands-on tutorial
    • Certificate of completion

Course Price

149 Birr

    API Development with postman

    API Development with postman


$(document).ready(function() { $('#keyword').keypress(function(e) { if (e.which == 13) { $.ajax({ headers: { 'X-CSRF-TOKEN': "6bLUs2Pmz7kTQORYT9zKHhvF0SlvTbh3tENfUl4U" }, url: '/course/search', type: 'get', data: { keyWord: $("#keyword").val() }, success: function(data) { $('.data').html(data); } }) // SendData(); } }); $('#btn-search').click(function(e) { $.ajax({ // headers: { // 'X-CSRF-TOKEN': "6bLUs2Pmz7kTQORYT9zKHhvF0SlvTbh3tENfUl4U" // }, url: '/course/search', type: 'get', data: { keyWord: $("#keyword").val() }, success: function(data) { $('.data').html(data); } }) }); });