| by Achyut Kendre | No comments

How to make AJAX request using jQuery?

Example : https://drive.google.com/file/d/1Ed49rtebyOtRC6sDW4PKscqpvMYRuR3W/view?usp=sharing jQuery provides you built in method to make AJAX request to sever and retrieve result. What is AJAX in jQuery? AJAX is called Asynchronous Java Script with XML , it enables us to make the sync request to the server and retrieve the result from the server to load it in UI […]

Read More
| by Achyut Kendre | No comments

How to Travel DOM in jQuery?

J Query has built in methods to travel through DOM , it has following methods – first():-it will get you first element from selected elements.last():- it will get you last element from selected elements.next():- it will get immediate next element. nextAll():-it will get next all elements. prev():- it will get you immediate next element. prevAll():- […]

Read More
| by Achyut Kendre | 1 comment

What is J Query? How to use J Query in ASP.NET Core?

jQuery is a lightweight mini Java Script library with objective – “write less, do more”. jQuery is to make it much easier to use JavaScript on your website. jQuery takes a lot of common tasks that require many lines of JavaScript code to accomplish, and wraps them into methods that you can call with a […]

Read More