Change Text Decoration Property with jQuery

Amit D
Updated on 11-Dec-2019 08:12:16

832 Views

To change text decoration property with jQuery, use the jQuery css() property.ExampleYou can try to run the following code to change text-decoration property from underline to overline:Live Demo $(document).ready(function(){     $("p").on({         mouseenter: function(){         $(this).css({"text-decoration": "overline"});         }     });     }); p {    text-decoration: underline; } Move the mouse pointer on the text to remove underline and add overline.

Remove Underline with jQuery

Amit D
Updated on 11-Dec-2019 08:11:27

578 Views

To remove underline from a text in jQuery, use the jQuery css() method. The css property text-decoration property is used with none value.ExampleYou can try to run the following code to remove underline:Live Demo $(document).ready(function(){     $("p").on({         mouseenter: function(){         $(this).css({"text-decoration": "none"});         }     });     }); p {    text-decoration: underline; } Move the mouse pointer on the text to remove underline.

Method Parameters in C#

AmitDiwan
Updated on 11-Dec-2019 08:08:00

539 Views

The parameters are used to pass and receive data from a method. Let us first see the syntax −Access Specifier − This determines the visibility of a variable or a method from another class.Return type − A method may return a value. The return type is the data type of the value the method returns. If the method is not returning any values, then the return type is void.Method name − Method name is a unique identifier and it is case sensitive. It cannot be same as any other identifier declared in the class.Parameter list − Enclosed between parentheses, the ... Read More

Reverse Elements in List or Specified Range in C#

AmitDiwan
Updated on 11-Dec-2019 08:05:55

270 Views

To reverse the order of the elements in the entire List, the code is as follows −Example Live Demousing System; using System.Collections.Generic; public class Demo {    public static void Main(String[] args) {       List list = new List();       list.Add("One");       list.Add("Two");       list.Add("Three");       list.Add("Four");       list.Add("Five");       list.Add("Six");       list.Add("Seven");       list.Add("Eight");       Console.WriteLine("Enumerator iterates through the list elements...");       List.Enumerator demoEnum = list.GetEnumerator();       while (demoEnum.MoveNext()) {          string res ... Read More

Remove Underline from Hyperlink using jQuery

Amit D
Updated on 11-Dec-2019 08:05:30

767 Views

To remove underline from text hyperlink on hover using jQuery, use the jQuery css() property. The color text-decoration property is used with value none.ExampleYou can try to run the following code to learn how to remove underline from text hyperlink:Live Demo           jQuery Text Decoration                              $(document).ready(function() {             $('a').hover(                                function () {                   $(this).css({"text-decoration":"none"});                });                          });                    a {            text-decoration: underline;          }                         Demo text                

Change Background Color Using jQuery

Amit D
Updated on 11-Dec-2019 08:04:36

10K+ Views

To change the background color using jQuery, use the jQuery css() property. We will change background color on mouse hover with the jQuery on() and css() method. ExampleYou can try to run the following code to learn how to change background color using jQuery:Live Demo $(document).ready(function(){     $("body").on({         mouseenter: function(){             $(this).css("background-color", "gray");         },                   mouseleave: function(){             $(this).css("background-color", "red");         },                 dblclick: function(){             $(this).css("background-color", "yellow");         }     }); }); Double click and move the mouse pointer to change the background color.

Set Background Color in jQuery

Amit D
Updated on 11-Dec-2019 07:59:07

6K+ Views

To set the background color using jQuery, use the jQuery css() property. We will set background color on mouse hover with the jQuery on() method.ExampleYou can try to run the following color to set background color in jQuery.Live Demo $(document).ready(function(){     $("body").on({         mouseenter: function(){             $(this).css("background-color", "gray");         },       });     }); Move the mouse pointer on the page to change the background color.

List of All jQuery Events

Alex Onsman
Updated on 11-Dec-2019 07:57:32

272 Views

Events are actions that can be detected by your Web Application. When these events are triggered you can then use a custom function to do pretty much whatever you want with the event. These custom functions call Event Handlers.ExampleLet us see an example of bind() jQuery event. Using the jQuery Event Model, we can establish event handlers on DOM elements with the bind() method as follows:Live Demo           jQuery bind()                              $(document).ready(function() {             $('div').bind('click', ... Read More

Reverse Order of Elements in ArrayList or Specified Range in C#

AmitDiwan
Updated on 11-Dec-2019 07:55:44

201 Views

To reverse the order of the elements in the entire ArrayList, the code is as follows −Example Live Demousing System; using System.Collections; public class Demo {    public static void Main(String[] args) {       ArrayList list1 = new ArrayList();       list1.Add("A");       list1.Add("B");       list1.Add("C");       list1.Add("D");       list1.Add("E");       list1.Add("F");       list1.Add("G");       list1.Add("H");       list1.Add("I");       Console.WriteLine("Elements in ArrayList1...");       foreach (string res in list1) {          Console.WriteLine(res);       } ... Read More

Set All Bits in the BitArray to Specified Value in C#

AmitDiwan
Updated on 11-Dec-2019 07:50:46

101 Views

To set all bits in the BitArray to the specified value, the code is as follows −Example Live Demousing System; using System.Collections; public class Demo {    public static void Main() {       BitArray arr = new BitArray(5);       arr[0] = false;       arr[1] = false;       arr[2] = false;       arr[3] = false;       Console.WriteLine("BitArray...");       foreach(Object ob in arr) {          Console.WriteLine(ob);       }       arr.SetAll(true);       Console.WriteLine("Updated BitArray...");       foreach(Object ob in arr) ... Read More

Advertisements