Web Development Articles

Page 359 of 801

Style unordered lists markers with CSS

Lakshmi Srinivas
Lakshmi Srinivas
Updated on 15-Mar-2026 219 Views

The list-style-type property allows you to control the shape or style of unordered list markers. This CSS property provides various options to customize how list items appear. Syntax ul { list-style-type: value; } Common list-style-type Values Value Description Marker disc Default filled circle ● circle Empty circle ○ square Filled square ■ none No marker - Example: Square Markers ...

Read More

How to debug JavaScript in Visual Studio?

Nancy Den
Nancy Den
Updated on 15-Mar-2026 3K+ Views

To debug JavaScript in Visual Studio, you need to configure both Visual Studio and Internet Explorer settings. This guide covers the essential steps for debugging client-side JavaScript applications. Prerequisites Before debugging JavaScript in Visual Studio, ensure you have: Visual Studio installed with web development workload A web project containing JavaScript files Internet Explorer available (Visual Studio's default debugging browser) Setting Up Visual Studio Project Follow these steps to configure your Visual Studio project for JavaScript debugging: Open Visual Studio ...

Read More

Set image for bullet style with CSS

Chandu yadav
Chandu yadav
Updated on 15-Mar-2026 558 Views

The list-style-image CSS property allows you to replace default bullet points with custom images, giving you complete control over list styling. Syntax list-style-image: url('path/to/image.png'); list-style-image: none; /* Default */ Basic Example Here's how to set a custom bullet image for an unordered list: .custom-bullets { list-style-image: url('/images/arrow-bullet.png'); } ...

Read More

How to debug obfuscated JavaScript?

Ankitha Reddy
Ankitha Reddy
Updated on 15-Mar-2026 700 Views

Debugging obfuscated JavaScript code requires unminifying and formatting the compressed code to make it readable. Obfuscated code is deliberately made difficult to understand by removing whitespace, shortening variable names, and sometimes encoding strings. What is Obfuscated JavaScript? Obfuscated JavaScript is code that has been intentionally made difficult to read and understand. It typically looks like this: var _0x1234=['hello', 'world'];function _0x5678(){console.log(_0x1234[0]+' '+_0x1234[1]);} Method 1: Using Online JavaScript Formatter The easiest way to debug obfuscated code is using an online formatter. Go to the TutorialsPoint JavaScript Formatter: Paste your obfuscated JavaScript code in ...

Read More

How to Debug JavaScript on iPad?

Abhinanda Shri
Abhinanda Shri
Updated on 15-Mar-2026 782 Views

To debug JavaScript on iPad, you need to use Safari's Web Inspector feature along with a Mac computer. This process involves enabling developer tools on both devices and establishing a connection between them. Prerequisites Before starting, ensure you have: An iPad with Safari browser A Mac computer with Safari installed A USB cable to connect iPad to Mac The website or web app you want to debug Step 1: Enable Web Inspector on iPad First, you need to enable the Web Inspector feature in your iPad's Safari settings: Open the Settings app ...

Read More

What are different Navigator methods available?

Jennifer Nicholas
Jennifer Nicholas
Updated on 15-Mar-2026 285 Views

The Navigator object provides several methods to interact with the browser and detect client capabilities. Here are the main Navigator methods available in JavaScript: Navigator Methods Overview Method Description Browser Support ...

Read More

Usage of CSS list-style-image property

karthikeya Boyini
karthikeya Boyini
Updated on 15-Mar-2026 88 Views

The list-style-image CSS property allows you to replace default list markers (bullets or numbers) with custom images. This property is commonly used to create visually appealing lists with custom icons or graphics. Syntax list-style-image: url(image-path) | none | inherit; Parameters Value Description url() Specifies the path to the image file none No image is used (default behavior) inherit Inherits the value from parent element Example: Basic Usage ...

Read More

What is the role of clearTimeout() function in JavaScript?

Srinivas Gorla
Srinivas Gorla
Updated on 15-Mar-2026 349 Views

The clearTimeout() function cancels a timeout that was previously set with setTimeout(). When you call setTimeout(), it returns a timeout ID that you can use with clearTimeout() to stop the scheduled execution. Syntax clearTimeout(timeoutID) Parameters timeoutID - The identifier returned by setTimeout() that you want to cancel Basic Example clearTimeout Example Start Timer Cancel Timer ...

Read More

How to differentiate between Manual and Automated Animation in JavaScript?

Shubham Vora
Shubham Vora
Updated on 15-Mar-2026 669 Views

Generally, animation in JavaScript is done to get different effects and make the object move around the page. You can move and animate any type of HTML element using manual or automated animations in JavaScript. In this tutorial, we will learn how to differentiate between manual and automated animation in JavaScript. Manual Animation Manual animation requires user interaction to trigger movement or changes. The animation process is not automated and depends on events like button clicks or mouse actions. The following implementation demonstrates a simple manual animation using DOM object properties and JavaScript functions: ...

Read More

How to list down all the plug-in installed in your browser?

Nitya Raut
Nitya Raut
Updated on 15-Mar-2026 1K+ Views

To list down all the plug-ins installed in the web browser, use the JavaScript navigator object. The JavaScript navigator object includes a child object called plugins. This object is an array, with one entry for each plug-in installed on the browser. Understanding navigator.plugins The navigator.plugins property returns a PluginArray object containing Plugin objects representing the plugins installed in the browser. Each plugin object has properties like name, filename, and description. Example You can try to run the following code to list down all the plug-ins installed in your browser: ...

Read More
Showing 3581–3590 of 8,010 articles
« Prev 1 357 358 359 360 361 801 Next »
Advertisements