Created
January 7, 2016 13:41
-
-
Save bramstroker/16292908779a745a19a3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Dit werkt wel | |
$('#js-searchresults-change-data').on('click', function() { | |
// Append a overlay for the form | |
$('#main').append('<div id="js-searchresults-form-overlay" class="searchresults-overlay searchresults-overlay--form"></div>'); | |
$('#js-searchresults-form, #js-searchresults-form-overlay').velocity('fadeIn', {duration: 300}); | |
}) | |
//Dit werkt niet | |
/*$(document).on('click', '#js-searchresults-change-data', function (event) { | |
// Append a overlay for the form | |
$('#main').append('<div id="js-searchresults-form-overlay" class="searchresults-overlay searchresults-overlay--form"></div>'); | |
$('#js-searchresults-form, #js-searchresults-form-overlay').velocity('fadeIn', {duration: 300}); | |
});*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment