jQuery — Images and Inserting Elements

John Au-Yeung
3 min readDec 30, 2020
Photo by Yogendra Singh on Unsplash

jQuery is a popular JavaScript for creating dynamic web pages.

In this article, we’ll look at how to using jQuery in our web apps.

:image Selector

We can select any element with type image with the :image selector.

For example, if we have:

<form>
<input type="button" value="Input…

--

--