Total Blog Posts: 11

In this article you are going to learn to work with Deferred objects in jQuery.)

#jquery #ajax #javascript #pauldsheriff #development #programming

In this article you are going to learn about the global Ajax events you can hook into)

#jquery #ajax #javascript #pauldsheriff #development #programming

In this article you are going to learn to validate data using the jQuery plugin.)

#jquery #ajax #javascript #validation #pauldsheriff #development #programming

In this blog post you learn how to work with form data using jQuery. Find out how to work with the OnFocus and OnBlur events. Learn about the submit(), serializeArray(), serialize(), and param() methods. You will also learn to work with FormData.)

#jquery #ajax #javascript #pauldsheriff #development #programming

jQuery has some shorthand functions for getting and posting data. In this blog post you learn to use the .get(), .getJSON(), and .post() functions. In addition, the .load() function is also demonstrated for dynamically loading HTML into the DOM.)

#jquery #ajax #javascript #pauldsheriff #development #programming

In this blog post you learn to make an Ajax call to a .NET Core Web API server using jQuery's $.ajax() method and promises. jQuery's $.ajax() can work with either callbacks, or can work with promises. In this blog post you learn to use promises as this is the preferred approach today.)

#jquery #ajax #javascript #dotnet #pauldsheriff #development #programming

In this blog post you learn to make an Ajax call to a .NET Core Web API server using jQuery's $.ajax() method and callbacks. jQuery's $.ajax() can work with either callbacks, or can work with promises. In this blog post you learn to use callbacks as you may still this approach used in code that you might work on. In the next blog post you learn to use the promise approach.)

#jquery #ajax #javascript #webapi #dotnet #pauldsheriff #development #programming

In this blog post you learn to create a node server to serve up web pages. On these web pages you can use JavaScript or jQuery to make Ajax calls to a web server that hosts Web API calls.)

#jquery #ajax #javascript #node #webapi #pauldsheriff #development #programming

In this blog post you learn to create an MVC application to serve up web pages. On these web pages you can use JavaScript or jQuery to make Ajax calls to a web server that hosts Web API calls.)

#dotnet #ajax #mvc #webapi #dotnetcore #pauldsheriff #development #programming

In this blog post you learn to create a .NET Core web server to service Web API calls coming from any Ajax front-end.)

#dotnet #dotnetcore #webapi #mvc #ajax #pauldsheriff #development #programming

We often have a one-to-many relationship in tables in a database. When you need to ask the user to select a parent value, then select a child value in a web application, you don't want to post-back just to refresh the child list. Doing so causes a flash on the page and can place the user back at the top of the web page. This is not the best UI experience for the user but can be remedied easily. In this blog post, you are going to learn to populate a drop-down list based on the selection in another drop-down list. The technologies used in this post are MVC, Entity Framework, Web API, jQuery, and Ajax. To try out the samples in this blog post, create an MVC application using Visual Studio.)

#mvc #ajax #pauldsheriff #development #programming