There is no built-in way to change the bullet color of an HTML list with CSS. Instead, we can build custom list bullets...
A list in HTML is used to semantically present a collection of items. Currently, there are three types of HTML lists; or...
In this tutorial, we will learn how to set a new value for the src attribute on an img element in HTML using pure JavaSc...
In this tutorial, we will learn how to reset a form using pure JavaScript and jQuery. Using Pure JavaScriptTo reset...
To make an HTML button take the user to a new page when clicked, we can put it in a form and set the form action to the...
Unfortunately, there is no CSS property for creating borders inside HTML elements. We can, however, create the illusion...
To change the cursor to a hand pointer on hover for any element, use the cursor property inside a CSS selector and set t...
In this tutorial, we will learn how to check if an HTML element is visible or hidden using pure JavaScript and jQuery.&n...
To submit a form with jQuery, use the built-in submit() method. This is useful when the button to submit the form has th...
To change the background image on an element in CSS on hover we can use the CSS pseudo :hover class to set a new backgro...
A group of radio buttons in HTML allows the user to select only one option from multiple options. In this tutorial, we w...
The del tag in HTML represents deleted text and is often used to only delete a section of text inside a paragraph or hea...
The DOM or Document Object Model is the API that becomes available when an HTML page loads in a browser. This object mod...
A paragraph is a block of text containing related sentences. In HTML, paragraphs are created using the p tag. Creat...
There are a couple of different ways we can approach creating new lines in PHP, which we will learn in this tutorial.&nb...
Finding the count of all the elements in an array is a common programming task. PHP provides two built-in utilities for...
Sometimes one needs to check whether a variable is an object or an array in JavaScript. In this tutorial, we will learn...
Getting data from HTML input boxes is a common task in JavaScript. In this tutorial, we will learn how to get the value...
The HTML s tag is an inline element, which creates a strikethrough text effect. A strikethrough represents a section of...
After installing the latest version of Python 3 on your system, you will notice that an older version is still used when...
In this article, we will learn how to install Python 3 on an Ubuntu system. The latest version of Python is 3.9 and...
In this tutorial, we will look at the different ways to remove excess whitespaces in a string in PHP From the Start...
Like many things in PHP, there are multiple ways to approach removing elements from arrays. In this tutorial, we will le...
Latest

How to Change List Bullet Color in CSS
January 16, 2021There is no built-in way to change the bullet color of an HTML list with CSS. Instead, we can build custom list bullets...

How to Make Ordered, Unordered and Description Lists in HTML
January 15, 2021
How to Change Image Source with Pure JavaScript or jQuery
January 15, 2021
How to Reset a Form Using JavaScript or jQuery
January 13, 2021
How to Turn a Button into a Link in HTML
January 13, 2021To make an HTML button take the user to a new page when clicked, we can put it in a form and set the form action to the...

How to Place a Border inside an Element with CSS
January 12, 2021Unfortunately, there is no CSS property for creating borders inside HTML elements. We can, however, create the illusion...

How to Change Cursor to a Hand Pointer on Hover with CSS
January 12, 2021To change the cursor to a hand pointer on hover for any element, use the cursor property inside a CSS selector and set t...

How to Check if an Element is Visible or Hidden with JavaScript
January 12, 2021In this tutorial, we will learn how to check if an HTML element is visible or hidden using pure JavaScript and jQuery.&n...

How to Submit a Form with jQuery
January 11, 2021
How to Change Image on Hover with CSS
January 11, 2021
How to Get the Selected Radio Button Value in JavaScript
January 11, 2021
The HTML <del> Tag
December 30, 2020
List of All HTML DOM Document Object Properties and Methods
December 22, 2020
How to Create HTML Paragraphs
December 22, 2020
How to Create New Line in PHP
December 21, 2020
How to Count all Elements in an Array in PHP
December 21, 2020
How to Check If Object is an Array in JavaScript
December 21, 2020
How to Get the Value of an Input Text Box in JavaScript or jQuery
December 18, 2020
The HTML <s> Tag (Strikethrough)
December 18, 2020
How to Change the Default Python Version to Python 3.9
December 17, 2020
How to Install Python 3.9 on Ubuntu (Latest Version)
December 17, 2020
Remove Excess Whitespaces in a String in PHP
December 17, 2020
How to Remove Elements from Arrays in PHP
December 17, 2020- Previous
- Next