Uncaught TypeError in call to jQuery plugin
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am creating a plugin using jQuery to page a table. Initially, my code looks like this:
(function($) {
$.paginate = function(options) {
var settings = $.extend({}, $.fn.paginate.defaults, options);
};
$.paginate.defaults = {
pageSize: 10,
nextText: 'Next',
prevText: 'Prev',
firstText: '<<'
lastText: '>>'
}
})(jQuery);
And the call to the plugin like this:
<script type="text/javascript">
$(document).ready(function(){
$(".table").paginate({
pageSize: 10
});
});
</script>
However, the paginate function is not being found by jQuery. Can you tell me where I'm going wrong?
javascript jquery jquery-plugins
add a comment |
I am creating a plugin using jQuery to page a table. Initially, my code looks like this:
(function($) {
$.paginate = function(options) {
var settings = $.extend({}, $.fn.paginate.defaults, options);
};
$.paginate.defaults = {
pageSize: 10,
nextText: 'Next',
prevText: 'Prev',
firstText: '<<'
lastText: '>>'
}
})(jQuery);
And the call to the plugin like this:
<script type="text/javascript">
$(document).ready(function(){
$(".table").paginate({
pageSize: 10
});
});
</script>
However, the paginate function is not being found by jQuery. Can you tell me where I'm going wrong?
javascript jquery jquery-plugins
add a comment |
I am creating a plugin using jQuery to page a table. Initially, my code looks like this:
(function($) {
$.paginate = function(options) {
var settings = $.extend({}, $.fn.paginate.defaults, options);
};
$.paginate.defaults = {
pageSize: 10,
nextText: 'Next',
prevText: 'Prev',
firstText: '<<'
lastText: '>>'
}
})(jQuery);
And the call to the plugin like this:
<script type="text/javascript">
$(document).ready(function(){
$(".table").paginate({
pageSize: 10
});
});
</script>
However, the paginate function is not being found by jQuery. Can you tell me where I'm going wrong?
javascript jquery jquery-plugins
I am creating a plugin using jQuery to page a table. Initially, my code looks like this:
(function($) {
$.paginate = function(options) {
var settings = $.extend({}, $.fn.paginate.defaults, options);
};
$.paginate.defaults = {
pageSize: 10,
nextText: 'Next',
prevText: 'Prev',
firstText: '<<'
lastText: '>>'
}
})(jQuery);
And the call to the plugin like this:
<script type="text/javascript">
$(document).ready(function(){
$(".table").paginate({
pageSize: 10
});
});
</script>
However, the paginate function is not being found by jQuery. Can you tell me where I'm going wrong?
javascript jquery jquery-plugins
javascript jquery jquery-plugins
asked Nov 16 '18 at 18:41
Claudivan MoreiraClaudivan Moreira
563
563
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You are messing up with use of $.fn
The plugin method needs to be assigned to $.fn
in order to use $(selector).myPlugin()
$.fn.paginate = function(options) {...
Then you have a mismatch between
$.paginate.defaults
And
$.extend({}, $.fn.paginate.defaults
// ^^ fn here but not above
Same problem this way. I tried to change the form of the call, but it did not work, too:$(function() { $('tabela').paginate({ pageSize: 4 }); });
– Claudivan Moreira
Nov 16 '18 at 19:02
Any errors in console? note that'tabela'
is invalid selector. There are lots of resources on web about how to create plugins and even tools to generate base plugin code
– charlietfl
Nov 16 '18 at 19:05
That's it. I modified the selector and added a "," after thefirstText
field and it worked. Strange that the browser did not show syntax error previously. After these adjustments, it worked. Thank you.
– Claudivan Moreira
Nov 16 '18 at 19:11
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53343633%2funcaught-typeerror-in-call-to-jquery-plugin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You are messing up with use of $.fn
The plugin method needs to be assigned to $.fn
in order to use $(selector).myPlugin()
$.fn.paginate = function(options) {...
Then you have a mismatch between
$.paginate.defaults
And
$.extend({}, $.fn.paginate.defaults
// ^^ fn here but not above
Same problem this way. I tried to change the form of the call, but it did not work, too:$(function() { $('tabela').paginate({ pageSize: 4 }); });
– Claudivan Moreira
Nov 16 '18 at 19:02
Any errors in console? note that'tabela'
is invalid selector. There are lots of resources on web about how to create plugins and even tools to generate base plugin code
– charlietfl
Nov 16 '18 at 19:05
That's it. I modified the selector and added a "," after thefirstText
field and it worked. Strange that the browser did not show syntax error previously. After these adjustments, it worked. Thank you.
– Claudivan Moreira
Nov 16 '18 at 19:11
add a comment |
You are messing up with use of $.fn
The plugin method needs to be assigned to $.fn
in order to use $(selector).myPlugin()
$.fn.paginate = function(options) {...
Then you have a mismatch between
$.paginate.defaults
And
$.extend({}, $.fn.paginate.defaults
// ^^ fn here but not above
Same problem this way. I tried to change the form of the call, but it did not work, too:$(function() { $('tabela').paginate({ pageSize: 4 }); });
– Claudivan Moreira
Nov 16 '18 at 19:02
Any errors in console? note that'tabela'
is invalid selector. There are lots of resources on web about how to create plugins and even tools to generate base plugin code
– charlietfl
Nov 16 '18 at 19:05
That's it. I modified the selector and added a "," after thefirstText
field and it worked. Strange that the browser did not show syntax error previously. After these adjustments, it worked. Thank you.
– Claudivan Moreira
Nov 16 '18 at 19:11
add a comment |
You are messing up with use of $.fn
The plugin method needs to be assigned to $.fn
in order to use $(selector).myPlugin()
$.fn.paginate = function(options) {...
Then you have a mismatch between
$.paginate.defaults
And
$.extend({}, $.fn.paginate.defaults
// ^^ fn here but not above
You are messing up with use of $.fn
The plugin method needs to be assigned to $.fn
in order to use $(selector).myPlugin()
$.fn.paginate = function(options) {...
Then you have a mismatch between
$.paginate.defaults
And
$.extend({}, $.fn.paginate.defaults
// ^^ fn here but not above
edited Nov 16 '18 at 18:52
answered Nov 16 '18 at 18:44
charlietflcharlietfl
142k1391126
142k1391126
Same problem this way. I tried to change the form of the call, but it did not work, too:$(function() { $('tabela').paginate({ pageSize: 4 }); });
– Claudivan Moreira
Nov 16 '18 at 19:02
Any errors in console? note that'tabela'
is invalid selector. There are lots of resources on web about how to create plugins and even tools to generate base plugin code
– charlietfl
Nov 16 '18 at 19:05
That's it. I modified the selector and added a "," after thefirstText
field and it worked. Strange that the browser did not show syntax error previously. After these adjustments, it worked. Thank you.
– Claudivan Moreira
Nov 16 '18 at 19:11
add a comment |
Same problem this way. I tried to change the form of the call, but it did not work, too:$(function() { $('tabela').paginate({ pageSize: 4 }); });
– Claudivan Moreira
Nov 16 '18 at 19:02
Any errors in console? note that'tabela'
is invalid selector. There are lots of resources on web about how to create plugins and even tools to generate base plugin code
– charlietfl
Nov 16 '18 at 19:05
That's it. I modified the selector and added a "," after thefirstText
field and it worked. Strange that the browser did not show syntax error previously. After these adjustments, it worked. Thank you.
– Claudivan Moreira
Nov 16 '18 at 19:11
Same problem this way. I tried to change the form of the call, but it did not work, too:
$(function() { $('tabela').paginate({ pageSize: 4 }); });
– Claudivan Moreira
Nov 16 '18 at 19:02
Same problem this way. I tried to change the form of the call, but it did not work, too:
$(function() { $('tabela').paginate({ pageSize: 4 }); });
– Claudivan Moreira
Nov 16 '18 at 19:02
Any errors in console? note that
'tabela'
is invalid selector. There are lots of resources on web about how to create plugins and even tools to generate base plugin code– charlietfl
Nov 16 '18 at 19:05
Any errors in console? note that
'tabela'
is invalid selector. There are lots of resources on web about how to create plugins and even tools to generate base plugin code– charlietfl
Nov 16 '18 at 19:05
That's it. I modified the selector and added a "," after the
firstText
field and it worked. Strange that the browser did not show syntax error previously. After these adjustments, it worked. Thank you.– Claudivan Moreira
Nov 16 '18 at 19:11
That's it. I modified the selector and added a "," after the
firstText
field and it worked. Strange that the browser did not show syntax error previously. After these adjustments, it worked. Thank you.– Claudivan Moreira
Nov 16 '18 at 19:11
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53343633%2funcaught-typeerror-in-call-to-jquery-plugin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown