Skip to content

Instantly share code, notes, and snippets.

@bulbul84
Created July 25, 2022 18:05
Show Gist options
  • Save bulbul84/d76cf80c361f85c0bcdb376d579bb17f to your computer and use it in GitHub Desktop.
Save bulbul84/d76cf80c361f85c0bcdb376d579bb17f to your computer and use it in GitHub Desktop.
responsive jquery css code
<script>
$(function(){
if ($(window).width() < 768) {
$("#filter").focus(function() {
$('html,body').animate({
scrollTop: $(".advisor_single_input").offset().top - 0},'slow');
});
$("#filter").focusout(function() {
$('html,body').animate({
scrollTop: $(".advisor_single_input").offset().top - 0},'slow')
});
}
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment