Today, we will discuss what is the actual difference between let and var. I will try my best to explain it to you in very clear and concise manner since there are a lot of lengthy articles about it. There are actually 2 major differences. 1. Var keyword is generally used with Javascript ES5 syntax
To uncheck a radio button in jQuery, we make use of prop() function. This function is only available in jQuery 1.6 or higher. For jQuery 1.5 or lower, please make use of attr() function. Example is given below for jQuery 1.6 or higher. <!DOCTYPE html> <html> <head> <title>jQuery Tutorial </title> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> //Function
To check a radio button in jQuery, we make use of prop() function. This function is only available in jQuery 1.6 or higher. For jQuery 1.5 or lower, please make use of attr() function. Example is given below for jQuery 1.6 or higher. <!DOCTYPE html> <html> <head> <title>jQuery Tutorial </title> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> //Function
To ubcheck all checkboxes in jQuery, we make use of prop() function with attribute value selector. This function is only available in jQuery 1.6 or higher. For jQuery 1.5 or lower, please make use of attr() function. Example is given below for jQuery 1.6 or higher. <!DOCTYPE html> <html> <head> <title>jQuery Tutorial </title> <script src="http://code.jquery.com/jquery-latest.js"></script>