Select option from dropdown select tag by text instead of value in jQuery

By Faruque Ahamed Mollick

In most of the time, we generally select an option from an HTML select box by the value of that option. But did you ever think about selecting an option by the text of that option?.... Read More

Java Program To Check A Number is Palindrome or Not

By Saruque Ahamed Mollick

Palindrome Number Take a number and reverse it. If the number remains same after reversing then the number is called a palindrome number. But if the number comes different from the.... Read More

Java Program To Check A Number Is Prime or Not

By Saruque Ahamed Mollick

In this post, we are going to learn, a number entered by the user is a prime number or not by using Java program.   What is a prime number? The number which is not divisible b.... Read More

Run JavaScript code or call a function after n seconds

By Faruque Ahamed Mollick

In this short tutorial, we are going to show you how to run our JavaScript code or call a function after a specific time or after n seconds after the window load. Suppose we want t.... Read More

How to check the internet connection status in JavaScript

By Faruque Ahamed Mollick

In this tutorial, we are going to see how to check the internet connection on our browser using JavaScript so that it is possible to see if online or offline. Checking the internet.... Read More

Concept Of Class and Object in Java With Examples

By Saruque Ahamed Mollick

The most important part of Object-Oriented Programming is to make the concept of Objects and Classes very clear. Java is an Object-Oriented Programming Language, Which helps us to.... Read More

How To Display A Random Image From Directory In PHP?

By Faruque Ahamed Mollick

Suppose we have a directory that is contained with some images and we want to display one of those images on our web page. The image that will be displayed on the web page will ran.... Read More

Generate random hex CSS color code in JavaScript

By Faruque Ahamed Mollick

We can set the color of text or background color of any element by set the hex color through CSS. Now in this post, we are going to generate the random CSS hex color code using Jav.... Read More