Category: Java Script
How to create Accordion with pure JavaScript
How to create Accordion with pure JavaScript with the help of CSS and HTML. In this article today we learn how to create accordion section using with JavaScript. In Three step to make accordion
How to use JavaScript along with HTML?
JavaScript can be used along with HTML by including <script> tag in the HTML <body> tag. Example: <html> <body> <script> alert('Hello, World!') </script> </body> </
Difference between $(this) and this keyword in jQuery?
$(this) returns a jQuery object, on which you can call several jQuery methods e.g. text() to retrieve text, val() to retrieve value etc, while this represent current element, and it’s one of the Ja