Skip to content

Instantly share code, notes, and snippets.

@nixonmedia
Last active April 5, 2018 12:43
Show Gist options
  • Save nixonmedia/5574ccdee8a73c273eb40ee1592e6393 to your computer and use it in GitHub Desktop.
Save nixonmedia/5574ccdee8a73c273eb40ee1592e6393 to your computer and use it in GitHub Desktop.
Button Injection
$ = jQuery;
$(document).ready(function(){
$('.impress-showcase-property').each(function(){
href = $('.impress-showcase-photo', this).attr('href');
height = $(this).css('height');
$(this).append($('<a class="view-property-btn" href="'+href+'">View Property</a>'));
$(this).height(function (index, height) {
return (height + 30);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment