Animate scrollLeft Using jQuery

Alex Onsman
Updated on 17-Dec-2019 07:43:36

2K+ Views

To animate scrollLeft using jQuery, use the animate() method with scrollLeft.ExampleYou can try to run the following code to learn how to animate scrollLeft using jQuery:Live Demo $(document).ready(function(){     $('#scrollme').click(function() {     $('html,body').animate({         scrollLeft: $('#demo').css('left')     }, 500, function() {         $('html, body').animate({             scrollLeft: 0         }, 500);     }); }); }); #demo {     width: 100px;     height: 100px;     background: green;     position: relative;     left: 800px; } Click to scroll left

Find Horizontal Scroll Position Using jQuery

Alex Onsman
Updated on 17-Dec-2019 07:42:34

2K+ Views

To find horizontal scroll position, use the jQuery scrollLeft() method.ExampleYou can try to run the following code to find horizontal scroll position using jQuery.Live Demo               jQuery scrollLeft() method                              $(document).ready(function(){             $("div.demo").scrollLeft( 200 );                             $("div.demo").mousemove(function () {                var left = $("div.demo").scrollLeft();                $("#result").html("left offset: " + ... Read More

Update Multiple Records in MySQL Using a Single Query

AmitDiwan
Updated on 17-Dec-2019 07:42:13

913 Views

Let us first create a table −mysql> create table DemoTable    -> (    -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    -> Marks1 int,    -> Marks2 int,    -> Marks3 int    -> ); Query OK, 0 rows affected (0.60 sec)Insert some records in the table using insert command −mysql> insert into DemoTable(Marks1, Marks2, Marks3) values(45, 67, 34); Query OK, 1 row affected (0.33 sec) mysql> insert into DemoTable(Marks1, Marks2, Marks3) values(89, 87, 56); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable(Marks1, Marks2, Marks3) values(87, 56, 54); Query OK, 1 row affected (0.31 sec)Display ... Read More

Position Horizontal Scroll Bar at Center of DIV

Alex Onsman
Updated on 17-Dec-2019 07:41:36

3K+ Views

To position horizontal scroll bar at center of div, use the scrollleft. You can try to run the following code to position horizontal scroll bar in div.ExampleThe scroll bar is positioned at center of div:Live Demo               jQuery Scroll                              $(document).ready(function(){                         $(document).ready(function(){             var outerContent = $('.demo');             var innerContent = $('.demo > div');                         outerContent.scrollLeft( (innerContent.width() - outerContent.width()) / 2);                 });                          });                             html, body, div {             margin:0;             padding:0;         }         .demo {             width:400px;             overflow-x:scroll;         }                 #viewContainer {             height:120px;             width:1000px;             display:table;         }         .myclass {             width:250px;             height:100%;             display:table-cell;             border:2px solid blue;         }                               Far left     left     center     right     Far right      

Find Popular Domains from MySQL Table with Search Volume

AmitDiwan
Updated on 17-Dec-2019 07:34:46

209 Views

For this, you can use GROUP BY along with the ORDER BY clause. Let us first create a table &mins;mysql> create table DemoTable    -> (    -> URL varchar(40),    -> DomainName varchar(20),    -> SearchTimes int    -> ); Query OK, 0 rows affected (0.62 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('www.gmail.com', 'gmail.com', 4); Query OK, 1 row affected (0.26 sec) mysql> insert into DemoTable values('www.google.com', 'google.com', 3); Query OK, 1 row affected (0.25 sec) mysql> insert into DemoTable values('www.gmail.com', 'gmail.com', 9); Query OK, 1 row affected (0.15 sec) mysql> insert ... Read More

JavaScript Array.from() Method

AmitDiwan
Updated on 17-Dec-2019 07:34:07

198 Views

The from() method of JavaScript is used to return the Array object from any object with a length property or an iterable object.The syntax is as follows −Array.from(obj, mapFunction, val)Above, the parameter obj is the object to convert to an array, mapFunction is a map function to call, val is a value to use as this when executing the mapFunction.Let us now implement the from() method in JavaScript −Example Live Demo    Demo Heading               var arr1 = Array.from("PQRS");       var arr2 = Array.from("12345");       document.getElementById("test").innerHTML = arr1 ... Read More

Insert an Element into DOM Using jQuery

Amit D
Updated on 17-Dec-2019 07:33:22

455 Views

There may be a situation when you would like to insert new one or more DOM elements in your existing document. jQuery provides various methods to insert elements at various locations.The after( content ) method insert content after each of the matched elements whereas the method before( content ) method inserts content before each of the matched elements.After contentThe after( content ) method inserts content after each of the matched elements.ExampleYou can try to run the following code to learn how to insert an element into DOM, with after() method:Live Demo           jQuery after(content) method ... Read More

Display Storage Engine in JDBC MySQL Connection Query

AmitDiwan
Updated on 17-Dec-2019 07:32:03

156 Views

Use SELECT ENGINE to display the storage engine name. Let us first create a table −mysql> create table DemoTable    -> (    -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    -> Name varchar(20),    -> Age int,    -> CountryName varchar(20)    -> ); Query OK, 0 rows affected (0.63 sec)Here is the Java code to get the storage engine using JDBC −Exampleimport java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class GetTheStorageEngine {    public static void main(String[] args) {       String hostURL = "jdbc:mysql://localhost:3306/web?useSSL=false";       Connection con = null;       ... Read More

Remove All Elements from DOM Using Element ID in jQuery

Amit D
Updated on 17-Dec-2019 07:31:06

1K+ Views

To remove all the elements from DOM using element ID, use the remove() method.ExampleYou can try to run the following code to remove all the elements from DOM using element ID:Live Demo $(document).ready(function(){    $("button").click(function(){       $("#mydiv").remove();    }); }); Click to remove all elements This is some text. This is demo text.

Get Last Second of a Date in MySQL

AmitDiwan
Updated on 17-Dec-2019 07:30:38

341 Views

To get the last second of a date in MySQL, use the INTERVAL command. Let us first create a table −mysql> create table DemoTable    -> (    -> JoiningDatetime datetime,    -> DueDatetime datetime    -> ); Query OK, 0 rows affected (0.55 sec)Insert some records in the table using insert command −mysql> insert into DemoTable(JoiningDatetime) values('2019-11-03 12:34:54'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable(JoiningDatetime) values('2019-10-04 12:34:54'); Query OK, 1 row affected (0.13 sec)Display all records from the table using select statement −mysql> select *from DemoTable;This will produce the following output −+---------------------+-------------+ | JoiningDatetime   ... Read More

Advertisements