JS

14 articles found

Showing 1–10 of 14
JS 1 min read

Cookie is created with the setCookie() function. jQuery(document).on(‘click’,’#element-id/class’,function(e){ console.log(book); setCookie(‘cookie_name’,value, no_of_days); getCookie(‘cookie_name’); }); function setCookie(name,value,days) { console.log(value); var expires =…

Read Article

Advertisement

Advertisement

JS 4 min read

Understanding Debouncing: A Simple Explanation Debouncing is a programming technique used to ensure that a function doesn’t get called too…

Read Article