
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
237 Views
The detach() method in jQuery is used to remove selected elements.SyntaxThe syntax is as follows −$(selector).detach()ExampleLet us now see an example to implement the jQuery detach() method − Live Demo $(document).ready(function(){ $("button").click(function(){ $("span").detach(); }); }); ... Read More

AmitDiwan
99 Views
For this, use regular expression. The syntax is as follows −select * from information_schema.schemata WHERE SCHEMA_NAME REGEXP '^yourValue_+[A-Z]';Let us create some databases −mysql> create database bank_APP1; Query OK, 1 row affected (0.00 sec) mysql> create database bank_APP2; Query OK, 1 row affected (0.00 sec) mysql> create database bank_APP3; Query OK, ... Read More

AmitDiwan
226 Views
The dequeue() method in jQuery is used to remove the next function from the queue and then execute the function.SyntaxThe syntax is as follows −$(selector).dequeue(queue)Above, the queue is the name of the queue.ExampleLet us now see an example to implement the jQuery dequeue() method − Live Demo ... Read More

AmitDiwan
3K+ Views
For this, use COUNT(*) along with GROUP BY clause. Let us first create a table −mysql> create table DemoTable1942 ( Value int ); Query OK, 0 rows affected (0.00 sec)Insert some records in the table using insert command −mysql> insert into DemoTable1942 values(1); Query OK, 1 row ... Read More

AmitDiwan
137 Views
The remove() method in jQuery is used to remove the selected elements.SyntaxThe syntax is as follows −$(selector).remove(selector)Above, the parameter selector is used to specify one or more elements to be removed.ExampleLet us now see an example to implement the jQuery remove() method − Live Demo $(document).ready(function(){ ... Read More

AmitDiwan
142 Views
The clearQueue() method in jQuery is used to remove all items from the queue.SyntaxThe syntax is as follows −$(selector).clearQueue(queue)Above, the queue is the name of the queue.ExampleLet us now see an example to implement the jQuery clearQueue() method − Live Demo $(document).ready(function(){ $(".button1").click(function(){ ... Read More

AmitDiwan
213 Views
To set background color using CSS, use the background-color property.ExampleLet us now see an example − Live Demo .demo { text-decoration: overline underline; background-color: red; } Details Examination Center near ABC College. Exam begins at 9AM. OutputExampleLet us now see another example ... Read More

AmitDiwan
273 Views
With relative positioning, the element is positioned relative to its normal position. For this, use position: relativeExampleLet us now see an example − Live Demo div.demo { position: relative; color: white; background-color: orange; border: 2px dashed blue; left: 50px; } ... Read More

AmitDiwan
165 Views
With static positioning, the elements are not affected by the top, bottom, left, and right properties. For this, use position: static.ExampleLet us now see an example − Live Demo div.static { position: static; color: white; background-color: orange; border: 2px dashed blue; } ... Read More

AmitDiwan
96 Views
To set line height, use the line-height property. Followng are the property values −line-height: normal|number|length|initial|inherit;ExampleLet us now see an example − Live Demo div { line-height: 1.9; } Demo Heading This is demo text. This is another demo text. OutputExampleLet ... Read More