Chandu yadav has Published 1226 Articles

HTML contenteditable Attribute

Chandu yadav

Chandu yadav

Updated on 29-Jun-2020 09:15:59

4K+ Views

The contenteditable attribute in HTML is used to set whether the content is editable or not using boolean values true or false. This attribute can be used with any element since it is a Global Attribute.Following is the syntax −Above, set true if you want the element to be editable, ... Read More

HTML disabled Attribute

Chandu yadav

Chandu yadav

Updated on 29-Jun-2020 09:13:27

159 Views

The disabled attribute in HTML is used to disable an element. Use this attribute on the following elements −, , , , , , and .Following is the syntax −The above element will get disabled since we have set it disabled.Let us now see an example to implement the disabled ... Read More

Set the result of a query to a variable in MySQL?

Chandu yadav

Chandu yadav

Updated on 29-Jun-2020 09:10:38

308 Views

You can set the result of a query using select into command. The syntax is as follows.select yourColumnName1 into @anyVariableName from yourTableName where yourColumnName2='anyValue';Check the result is present in the variable or not using the select command. The syntax is as follows -select @anyVariableName;To understand the above syntax, let us ... Read More

HTML Tag

Chandu yadav

Chandu yadav

Updated on 29-Jun-2020 09:06:21

53 Views

The element in HTML is used to form the text bigger than the default.Note: The element is not supported in HTML Let us now see an example to implement the element in HTML−Example Live Demo    Demo Heading    This is demo text!    This demo ... Read More

HTML
Tag

Chandu yadav

Chandu yadav

Updated on 29-Jun-2020 09:01:49

56 Views

The tag in HTML is used to set a single enter line break. Let us now see an example to implement the br tag in HTML −Example Live Demo    Demo Heading    This is a demo text! The next paragraph will appear after two line breaks. ... Read More

HTML Tag

Chandu yadav

Chandu yadav

Updated on 29-Jun-2020 08:53:06

45 Views

The area tag in HTML is used to set an area in image map.Following are the attributes −AttributeValueDescriptionalttextSpecifies an alternate text for the area.coordsif shape = "rect" then coords = "left, top, right, bottom"if shape = "circ" then coords = "centerx, centery, radius"if shape = "poly" then coords = "x1, ... Read More

HTML autofocus Attribute

Chandu yadav

Chandu yadav

Updated on 29-Jun-2020 08:44:41

53 Views

The autofocus attribute of the element is used to specify which of the would get focus when the web page loads. This attribute introduced in HTML5.Following is the syntax −Let us now see an example to implement the autofocus attribute of the element −Example Live Demo ... Read More

HTML Tag

Chandu yadav

Chandu yadav

Updated on 29-Jun-2020 08:33:33

43 Views

The q tag in HTML is used to specify a short quotation. The quotation marks get inserted around the text set inside the q tag i.e. the quotation.Following is the attribute −cite: It sets the source url of the quote.Let us now see an example to implement the tag ... Read More

HTML

Chandu yadav

Chandu yadav

Updated on 29-Jun-2020 08:26:10

The element in HTML is used to set content for visitors who have visited your website but have disabled the scripts in the web browser.Note: The visitors would see the same content set in because scripts aren’t enabled in their browser or they have a browser that doesn’t ... Read More

How can I simulate a print statement in MySQL?

Chandu yadav

Chandu yadav

Updated on 29-Jun-2020 08:11:52

7K+ Views

To simulate a print statement in MySQL, you can use select statement. The syntax is as follows −SELECT ‘anyStringValue’ as ’ ‘;You can check the above syntax at the MySQL command line client.Case 1To print a string.mysql> select 'HELLO MYSQL' as ' ';Output+-------------+ |             ... Read More

Advertisements