i have this function:
<script type="text/javascript">
$('.infinite-container').waypoint('infinite', {
container: 'auto',
items: '.infinite-item',
more: '.infinite-more-link',
offset: 'bottom-in-view',
loadingClass: 'infinite-loading',
onBeforePageLoad: $.noop,
onAfterPageLoad: $.noop
});
</script>
and i want to call some other functions, for example i want to call this:
<script>
$(document).ready(function() {
$('.container').stickem();
});
</script>
and in order to call it i want to replace $.noop on the onAfterPageLoad event
would it look something like this?:
onAfterPageLoad: $.stickem()
super new to javascript/jquery if you cant tell.
i have this function:
<script type="text/javascript">
$('.infinite-container').waypoint('infinite', {
container: 'auto',
items: '.infinite-item',
more: '.infinite-more-link',
offset: 'bottom-in-view',
loadingClass: 'infinite-loading',
onBeforePageLoad: $.noop,
onAfterPageLoad: $.noop
});
</script>
and i want to call some other functions, for example i want to call this:
<script>
$(document).ready(function() {
$('.container').stickem();
});
</script>
and in order to call it i want to replace $.noop on the onAfterPageLoad event
would it look something like this?:
onAfterPageLoad: $.stickem()
super new to javascript/jquery if you cant tell.
Share Improve this question asked Jun 2, 2013 at 23:46 user2360599user2360599 833 gold badges3 silver badges11 bronze badges 1-
Remove the braces
onAfterPageLoad: $.stickem
– Sushanth -- Commented Jun 2, 2013 at 23:49
2 Answers
Reset to default 7Wrap your code inside a function, which the plugin will call when the onAfterPageLoad
event fires:
onAfterPageLoad: function() {
$('.container').stickem();
}
You have to create a function and put your code inside that function. See below for an example:
function stickem(){
// your code goes here
}
and then call it like this:
onAfterPageLoad: stickem;