How to determine the number of results in the autocomplete using jQuery

https://manajmnt-code.blogspot.com/2021/04/how-to-determine-number-of-results-in.html
This code determines the number of results of suggestions for input
 source: function(request, response) {
        var results = $.ui.autocomplete.filter(availableTags, request.term);        
        response(results.slice(0, 6));
    }

6 it's its the max-number of results in suggestion list

How to Create smart autocomplete input search from blogger api using jQuery

https://manajmnt-code.blogspot.com/2021/04/how-to-create-smart-autocomplete-input.html

In this example we will need an autocomplete code from the jquery library, and the blogger api to call article titles automatically.

This code generates suggestions based on the article titles found in a specific blog, let's me show how it's work:

Getting height and width when resizing two divs at the same time

https://manajmnt-code.blogspot.com/2021/04/getting-height-and-width-when-resizing.html
In this code I will be share with you how to get the height and width when resizing two div at the same time

how to add Related post for blogger using slider owl carousel

https://manajmnt-code.blogspot.com/2021/04/related-post-for-blogger-using-slider.html
in your blogger template search of <div class="post-footer-line post-footer-line-1">, and put in this code bellow , if your blog ltr direction remove rtl:true, option:

How to add recent posts for blogger using Owl carousel library [ source code ]

https://manajmnt-code.blogspot.com/2021/04/recent-post-for-blogger-using-owl.html

In this example we learn how to create slideshow for recent posts in blogger, we use carousel library to do this, it's best library to make amazing slider