Hello guys, suppose you have multiple checkboxes in your HTML page and you want to retrieve all checkboxes which are checked? How will you do that in jQuery? Well, you can use the pseudo selector like :checked to get all checked checkboxes. This selector checks for the checked property of checkbox and returns only those checkboxes which have this property. ...
Read More »Home »
Python vs JavaScript – Which Programming Language Beginners Should Learn?
A couple of years ago, I have blogged about Python vs Java and which programming language a beginner should learn or which programming language is better to get started with programming, but now the question has changed. It’s no more about Java but its about JavaScript. Now the choice is between Python or JavaScript. Don’t get me wrong, I am ...
Read More »Top 5 Python Web Development Frameworks for Programmers
Hello guys, I am a Java developer and have been writing about Java for a long time. Initially I wasn’t interested in Python but eventually, I had to join the Python wagon when I started exploring Machine Learning and Data Science. There is no doubt that Python is the #1 programming language and it’s heavily used in areas like automation ...
Read More »How to enable/disable an element using jQuery and JavaScript? Example
Sometimes we need to enable and disable input elements e.g. text box, radio buttons or checkbox, how can we do it dynamically without loading the page? Well, we can use JavaScript, particularly jQuery to do this. An element can be disabled in HTML by setting disable property to true and enabled again by setting disabled=false. By using jQuery, we can ...
Read More »Top 20 jQuery Interview Questions and Answers for JavaScript Programmers
Without a doubt, jQuery has given a much needed boost to JavaScript, a language so useful but equally underrated at times. Before jQuery came into picture, we used to write lengthy JavaScript code not just for bigger but even for smaller applications. That code was at times both difficult to read and maintain. Having written plain JavaScript before using this ...
Read More »