How to change CSS property on click in jQuery?

By Faruque Ahamed Mollick

The jQuery css() method can add CSS property to any of the element on the web page. This method also can change the existence CSS property of an element that is already set the CSS.... Read More

Check If A String Is Palindrome Or Not Ignoring The Case Of Characters In Java

By Saruque Ahamed Mollick

In this post, we are going to learn if a string is a palindrome or not ignoring the case of the characters used to build the string. What is a palindrome word? A word is said to be.... Read More

A Java Program to Find Duplicate Values in an Array

By Saruque Ahamed Mollick

In this post, we are going to write a program to find the duplicate values in an array in Java. Suppose an array is holding these values {1,4,5,3,1,8,7,5,7} This program will print.... Read More

FizzBuzz Problem In Java- A java code to solve FizzBuzz problem

By Saruque Ahamed Mollick

Before going to solve this problem let us know about the problem How to replace String Characters In Java Using replace() Method? FizzBuzz Problem The FizzBuzz is an ancient word g.... Read More

How to replace String Characters In Java Using replace() Method?

By Saruque Ahamed Mollick

Now we are going to see the easiest way to replace characters of a string with our desired character in java using replace() method. Below is the example of a String which we are g.... Read More

What is the opposite of JavaScript push() method that works reverse?

By Faruque Ahamed Mollick

We have already discussed the JavaScript push method in this post – Add or append a new item to an array in JavaScript using push() method. We have learned that the push() .... Read More

Add or append a new item to an array in JavaScript using push() method

By Faruque Ahamed Mollick

In this tutorial, we are going to learn how to append or add a new item to an array using the JavaScript push() method. We will learn with simple example code. JavaScript array pu.... Read More

Get random word from English dictionary in PHP tutorial

By Faruque Ahamed Mollick

Now, we are going to see a nice PHP tutorial and hoping that it will be so interesting to all. In this tutorial, we are going to get and then show random English word from the Engl.... Read More

Related Posts