How to use window setTimeout() Method JavaScript The setTimeout() method calls a function or evaluates an expression after a specified number of…
How to use jQuery .ajaxStop() method .ajaxStop() fires after completion of all AJAX requests on your page. If you want to run…
How to use .ajaxComplete() jQuery method When you using JavaScript in your website you use ajax jQuery to retrieve data from…
How to use $(document).ready() function in JavaScript You can use $(document).ready function after properly load the page you want to run JavaScript…
How can I set the value of a Dropdown List using jQuery? just make sure the value in the options tags matches the value in the val…
How to get selected option text using jQuery The below code snippet explains how to get the value of the option from HTML…
How to convert HTML code to string for use in javascript Use this url to convert HTML code into string : https://codebeautify.org/string-builder String Builder Online helps…
How to use php number_format() function The number_format() function formats a number with grouped thousands. Syntax number_format(number,decimals,decimalpoint,separator)
jQuery Add and Remove CSS Classes jQuery provides several methods, such as addClass(), removeClass(), toggleClass(), etc. to manipulate the CSS classes /add and remove…