How to Copy Text to Clipboard using JavaScript

In this article, you will learn how to write (copy) text and images to the clipboard using Javascript. Generally, the key combination (CTRL+C) of the keyboard is used to copy text to clipboard. If you want to integrate copy to clipboard functionality on button click, JavaScript is the easiest option to do that. The HTML […]

How to Search/Filter Dropdown using jQuery

How to Search/Filter Dropdown using jQuery

DropDown with Search using jQuery Search is a useful feature for an HTML drop-down list. Especially it will increase user convenience to select items from the drop-down having a long list. In this tutorial, we are going to list country dropdown with a search option. In a previous tutorial. Search Dropdown using jQuery In this […]

Getting Checkbox Value in jQuery

getting-checkbox-values-in-jquery

In HTML Form, the dropdown, checkbox type fields have an array of value. In this post, we are going to see how to get the array of selected Checkbox Value in jQuery In this example, we are using jQuery each() to get each checked value in an array. Then this array values will be shown […]

How to Rotate Image using jQuery

image-rotate

In this tutorial, we are going to rotate image using jQuery. In the previous tutorial, we have seen How Can I Generate a Random Alphanumeric String in PHP?. In this image rotation example, we are using jQuery animate function. Using this function we are controlling the image transform property.