admin管理员组文章数量:1341392
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;
本文标签: javascripthow to call a jquery function within another functionStack Overflow
版权声明:本文标题:javascript - how to call a jquery function within another function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743657340a2517353.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论