See the Pen OwlCarousel 2 with items counter index method by satish mallick ( @dreamnlead ) on dreamnlead/ .
Showing posts with label jQuery. Show all posts
Showing posts with label jQuery. Show all posts
Wednesday, 21 July 2021
Thursday, 7 May 2020
See the Pen How to check if element is visible after scrolling using jQuery by satish mallick ( @satishmallick ) ...
Saturday, 4 April 2020
Printing Star Pattern / print a pyramid pattern using Javascript and JQuery (with HTML and CSS for UI)
satish mallick
April 04, 2020
Printing Star Pattern / print a pyramid pattern using Javascript and JQuery (with HTML and CSS for UI) See the Pen Printing Star Pat...
Thursday, 2 April 2020
Bank Ifsc Code / Bank Detail Finder See the Pen ifsc code finder by satish mallick ( @satishmallick )
Move Your Curson Over The Country See the Pen Coronavirus Data Map by satish mallick ( @satishmallick )
Sunday, 6 January 2019
How To - Get Iframe Elements and write css using jquery
satish mallick
January 06, 2019
$ ( 'iframe' ). load ( function () { $ ( 'iframe' ). contents (). find ( "head" ) . append ( $ ( ...
Tuesday, 13 November 2018
create custom window scroll indicator with CSS and JavaScript
satish mallick
November 13, 2018
See the Pen create custom window scroll indicator with CSS and JavaScript by satish mallick. <div class="header"...
Monday, 29 October 2018
How To Use IMDB API With JavaScript and Jquery
satish mallick
October 29, 2018
See the Pen IMDB API With jQuery by satish mallick ( @mallick_satish ) on CodePen .
Tuesday, 25 September 2018
Save html form as html file with submitted values in jQuery
satish mallick
September 25, 2018
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <input id="name...
Wednesday, 13 December 2017
How to use Jquery to add click function ?
satish mallick
December 13, 2017
$ ( document ). on ( "click" , ".image-class" , function () { alert ( "I've been clicked" ); })...
Saturday, 4 November 2017
click outside div in jquery
satish mallick
November 04, 2017
$(document).ready(function(){ $('.menu ul#main-nav li').on("click", function(e) { //Code here.... }); ...
Thursday, 21 September 2017
Insert HTML And Text Using jQuery
satish mallick
September 21, 2017
<ul> <li><a href="#"></a></li> <li><a href="#"></a>...
Tuesday, 31 January 2017
On window resize page referesh in jQuery
satish mallick
January 31, 2017
👆👇👈👉👌 $(window).resize(function(e) { location.href = location.href; });
How to add offset to jquery scrolltop ?
satish mallick
January 31, 2017
$("nav#navigation li a [href^='#'] ").click(function(e) { e.preventDefault(); var headerheihgt = $('#header...
Trigger in jquery
satish mallick
January 31, 2017
🙌🙍🙎 <span class="list">trigger</span> <script> $(document).ready(function(e) { $(...
Wednesday, 25 January 2017
on mouse move image rotate in jquery
satish mallick
January 25, 2017
<div id="rotates" class="column"> <ul class="list"> ...
custom zoom effect using jquery (without js zoom plugins).
satish mallick
January 25, 2017
<div class="wrapper"> <div class="zoom_area column"> ...
Tuesday, 24 January 2017
circular class rotaion in jquery
satish mallick
January 24, 2017
See the Pen circular class rotaion in jquery by satish mallick ( @satishmallick ) <div class="wrapper"> ...
Wednesday, 11 January 2017
http://javascript-html-5.blogspot.com/2017/01/disable-right-click-copy-paste-from-web.html < script type = "text/j...
Sunday, 25 December 2016
Need to call a function in every 3 second with time duration reset ?
satish mallick
December 25, 2016
<script> var interval = setInterval(Tinterval, 5000); $('body').on('click', function() { ...