How to change the 'text-decoration' property with jQuery?

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

859 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.

Reverse the order of the elements in the entire List or in the specified range in C#

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

303 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

How to change the 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 all bits in the BitArray to the specified value in C#

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

129 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

Byte Struct in C#

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

323 Views

Byte Struct in C# represents an 8-bit unsigned integer. Following are the fields −Sr.noField & Description1MaxValueRepresents the largest possible value of a Byte. This field is constant.2MinValueRepresents the smallest possible value of a Byte. This field is constant.Following are some of the methods −Sr.noField & Description1CompareTo(Byte)Compares this instance to a specified 8-bit unsigned integer and returns an indication of their relative values.2CompareTo(Object)Compares this instance to a specified object and returns an indication of their relative values.3Equals(Byte)Returns a value indicating whether this instance and a specified Byte object represent the same value.4Equals(Object)Returns a value indicating whether this instance is equal to ... Read More

How to handle HTML5 media events using jQuery?

Alex Onsman
Updated on 11-Dec-2019 07:44:05

503 Views

To handle HTML5 media events using jQuery, use the click() method.ExampleYou can try to run the following code to learn how to handle HTML5 media events such as playing a song:Live Demo $(document).ready(function(){     var x = $(".myPlayer").length; // Count total audio players     var z = 0; // Start at first audio player     $("#play-bt").click(function(){        $(".myPlayer")[z].play();        $(".message").text("Music started");     })     $("#stop-bt").click(function(){        $(".myPlayer")[z].pause();        $(".myPlayer")[z].currentTime = 0;        $(".message").text("Music Stopped");     }) });   Play music Stop music

Displaying Records with maximum event number for each group in SAP Crystal Reports

Lakshmi Srinivas
Updated on 11-Dec-2019 07:40:46

496 Views

I would suggest using this logic to suppress details if the current record is not the record with the maximum amount for the group.//Suppress Details if the current record is not the record with the maximum amount for the group {Event.Event_no}maximum({Event.Event_no},{Deal_NO})This will suppress each record except records with the maximum amount each group.

How does jQuery Datepicker onchange event work?

Alex Onsman
Updated on 11-Dec-2019 07:39:51

17K+ Views

To work with jQuery Datepicker onchange(), use the datepicker onSelect event. This will show which date we added currently and changed to.ExampleYou can try to run the following code to learn how to work jQuery Datepicker onchange:Live Demo           $( function() {       $(".date").datepicker({     onSelect: function(dateText) {       display("Selected date: " + dateText + ", Current Selected Value= " + this.value);       $(this).change();     }   }).on("change", function() {     display("Change event");   });   function display(msg) {     $("").html(msg).appendTo(document.body);   }   });       Date:

Get the HashCode for the current UInt64 instance in C#

AmitDiwan
Updated on 11-Dec-2019 07:38:32

189 Views

To get the HashCode for the current UInt64 instance, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main() {       ulong val1 = 8768768;       ulong val2 = UInt64.MinValue;       Console.WriteLine("HashCode for val1 = "+val1.GetHashCode());       Console.WriteLine("HashCode for val2 = "+val2.GetHashCode());    } }OutputThis will produce the following output −HashCode for val1 = 8768768 HashCode for val2 = 0ExampleLet us see another example − Live Demousing System; public class Demo {    public static void Main() {       ulong val1 = 89879878;   ... Read More

Creating Index in Column based tables in SAP HANA

Samual Sam
Updated on 11-Dec-2019 07:37:47

2K+ Views

Note that an index not necessary to be NOT NULL. You can create an Index in SAP HANA database by using below query:CREATE INDEX IDX_MY_INDEX ON TABLE1 (MY_COLUMN);To know more about SAP HANA database, Modeling, and Administration features, you can refer our SAP HANA Text and Video tutorials:https://www.tutorialspoint.com/sap_hana/https://www.tutorialspoint.com/sap_hana_online_training/index.asp

Advertisements