Fix div after scroll, in Jquery

Size
1,805 Kb
Views
24,288

How do I make an fix div after scroll, in jquery?

What is a fix div after scroll, in jquery? How do you make a fix div after scroll, in jquery? This script and codes were developed by Digital Avinash on 12 October 2022, Wednesday.

Fix div after scroll, in Jquery Previews

Fix div after scroll, in Jquery - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>fix div after scroll, in Jquery</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="content"></div>
<div class="fixme">Scroll Now</div> <script src='https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Fix div after scroll, in Jquery - Script Codes CSS Codes

body { height: 3000px; background:yellow; }
.content { height: 300px; }
.fixme { background: green; color: white; text-align: center; width: 100%; padding:15px 0px }

Fix div after scroll, in Jquery - Script Codes JS Codes

var fixmeTop = $('.fixme').offset().top;
$(window).scroll(function() { var currentScroll = $(window).scrollTop(); if (currentScroll >= fixmeTop) { $('.fixme').css({ position: 'fixed', top: '0', left: '0' }); } else { $('.fixme').css({ position: 'static' }); }
});
Fix div after scroll, in Jquery - Script Codes
Fix div after scroll, in Jquery - Script Codes
Home Page Home
Developer Digital Avinash
Username digitalavinash
Uploaded October 12, 2022
Rating 3
Size 1,805 Kb
Views 24,288
Do you need developer help for Fix div after scroll, in Jquery?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Digital Avinash (digitalavinash) Script Codes
Create amazing web content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!