Dario Devcic

Results 7 comments of Dario Devcic

Here is my dirty try: ``` var clicked; $(document).mousedown(function(e) { // The latest element clicked clicked= $(e.target); }); $("button").click(function() { setTimeout(function() { $('html, body').animate({ scrollTop: $(clicked).offset().top - 50 }, 800);...

Just came here to see if this is possible :)

This option would be a great addition to this magnificent plugin. Here is one popup plugin that have option to change append location (look for appendLocation option) http://github.hubspot.com/vex/api/advanced/

It seems that this option already exists #304 :) Why this is not closed as resolved?

Same Issue, happens with: ACF Pro: 5.7.13 Yoast: v10.1.2 WordPress: 5.1.1 ACF Analysis: 2.2.0 Using following function for H2: ```php add_filter( 'yoast-acf-analysis/headlines', function( $headlines ) { $headlines['section_title'] = 2; return...

You need body scroll locking. Try this https://github.com/willmcpo/body-scroll-lock

Something like this as a temporary solution? Layout Packery after image loads - after items have been appended to the container. ```php $grid.on( 'append.infiniteScroll', function( event, response, path, items )...