Uncaught TypeError for inline javascript
up vote
-1
down vote
favorite
I have installed a skin for an e-commerce store and I noticed these errors:
Uncaught TypeError: $ is not a function
<li><span class="tdbLink"><a id="tdb1" href="/index.php">Home</a></span><script type="text/javascript">$("#tdb1").button().addClass("ui-priority-secondary") ...
The followin glibraries are already being loaded in the header:
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
I read some similar solution which suggested switching the $ to jQuery, when I do that I get:
jQuery(...).button is not a function
Similarly wrapping the js in:
jQuery(document).ready(function($){ .... });
Uncaught TypeError: "#tdb1".button is not a function
I am sure this is a simple fix, why am I getting this error?
jquery
add a comment |
up vote
-1
down vote
favorite
I have installed a skin for an e-commerce store and I noticed these errors:
Uncaught TypeError: $ is not a function
<li><span class="tdbLink"><a id="tdb1" href="/index.php">Home</a></span><script type="text/javascript">$("#tdb1").button().addClass("ui-priority-secondary") ...
The followin glibraries are already being loaded in the header:
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
I read some similar solution which suggested switching the $ to jQuery, when I do that I get:
jQuery(...).button is not a function
Similarly wrapping the js in:
jQuery(document).ready(function($){ .... });
Uncaught TypeError: "#tdb1".button is not a function
I am sure this is a simple fix, why am I getting this error?
jquery
3
jQuery(...).button is not a function
suggests that jQuery is loaded but the plugin isn't. Have you verified that it's being loaded correctly?
– David Thomas
Nov 10 at 13:45
@DavidThomas which plugin?
– Alan A
Nov 10 at 13:51
1
The plugin file that includes thebutton()
method. It is not part of core jQuery library
– charlietfl
Nov 10 at 13:55
It's from jQueryUI which you will need to add separately
– Rory McCrossan
Nov 10 at 14:11
When I add the jQuery UI plugin directly after the jQuery I get the same error in console: Uncaught TypeError: $ is not a function
– Alan A
Nov 10 at 18:35
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I have installed a skin for an e-commerce store and I noticed these errors:
Uncaught TypeError: $ is not a function
<li><span class="tdbLink"><a id="tdb1" href="/index.php">Home</a></span><script type="text/javascript">$("#tdb1").button().addClass("ui-priority-secondary") ...
The followin glibraries are already being loaded in the header:
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
I read some similar solution which suggested switching the $ to jQuery, when I do that I get:
jQuery(...).button is not a function
Similarly wrapping the js in:
jQuery(document).ready(function($){ .... });
Uncaught TypeError: "#tdb1".button is not a function
I am sure this is a simple fix, why am I getting this error?
jquery
I have installed a skin for an e-commerce store and I noticed these errors:
Uncaught TypeError: $ is not a function
<li><span class="tdbLink"><a id="tdb1" href="/index.php">Home</a></span><script type="text/javascript">$("#tdb1").button().addClass("ui-priority-secondary") ...
The followin glibraries are already being loaded in the header:
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
I read some similar solution which suggested switching the $ to jQuery, when I do that I get:
jQuery(...).button is not a function
Similarly wrapping the js in:
jQuery(document).ready(function($){ .... });
Uncaught TypeError: "#tdb1".button is not a function
I am sure this is a simple fix, why am I getting this error?
jquery
jquery
edited Nov 10 at 14:12
Rory McCrossan
238k29200243
238k29200243
asked Nov 10 at 13:41
Alan A
1,04461737
1,04461737
3
jQuery(...).button is not a function
suggests that jQuery is loaded but the plugin isn't. Have you verified that it's being loaded correctly?
– David Thomas
Nov 10 at 13:45
@DavidThomas which plugin?
– Alan A
Nov 10 at 13:51
1
The plugin file that includes thebutton()
method. It is not part of core jQuery library
– charlietfl
Nov 10 at 13:55
It's from jQueryUI which you will need to add separately
– Rory McCrossan
Nov 10 at 14:11
When I add the jQuery UI plugin directly after the jQuery I get the same error in console: Uncaught TypeError: $ is not a function
– Alan A
Nov 10 at 18:35
add a comment |
3
jQuery(...).button is not a function
suggests that jQuery is loaded but the plugin isn't. Have you verified that it's being loaded correctly?
– David Thomas
Nov 10 at 13:45
@DavidThomas which plugin?
– Alan A
Nov 10 at 13:51
1
The plugin file that includes thebutton()
method. It is not part of core jQuery library
– charlietfl
Nov 10 at 13:55
It's from jQueryUI which you will need to add separately
– Rory McCrossan
Nov 10 at 14:11
When I add the jQuery UI plugin directly after the jQuery I get the same error in console: Uncaught TypeError: $ is not a function
– Alan A
Nov 10 at 18:35
3
3
jQuery(...).button is not a function
suggests that jQuery is loaded but the plugin isn't. Have you verified that it's being loaded correctly?– David Thomas
Nov 10 at 13:45
jQuery(...).button is not a function
suggests that jQuery is loaded but the plugin isn't. Have you verified that it's being loaded correctly?– David Thomas
Nov 10 at 13:45
@DavidThomas which plugin?
– Alan A
Nov 10 at 13:51
@DavidThomas which plugin?
– Alan A
Nov 10 at 13:51
1
1
The plugin file that includes the
button()
method. It is not part of core jQuery library– charlietfl
Nov 10 at 13:55
The plugin file that includes the
button()
method. It is not part of core jQuery library– charlietfl
Nov 10 at 13:55
It's from jQueryUI which you will need to add separately
– Rory McCrossan
Nov 10 at 14:11
It's from jQueryUI which you will need to add separately
– Rory McCrossan
Nov 10 at 14:11
When I add the jQuery UI plugin directly after the jQuery I get the same error in console: Uncaught TypeError: $ is not a function
– Alan A
Nov 10 at 18:35
When I add the jQuery UI plugin directly after the jQuery I get the same error in console: Uncaught TypeError: $ is not a function
– Alan A
Nov 10 at 18:35
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53239563%2funcaught-typeerror-for-inline-javascript%23new-answer', 'question_page');
}
);
Post as a guest
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
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
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
3
jQuery(...).button is not a function
suggests that jQuery is loaded but the plugin isn't. Have you verified that it's being loaded correctly?– David Thomas
Nov 10 at 13:45
@DavidThomas which plugin?
– Alan A
Nov 10 at 13:51
1
The plugin file that includes the
button()
method. It is not part of core jQuery library– charlietfl
Nov 10 at 13:55
It's from jQueryUI which you will need to add separately
– Rory McCrossan
Nov 10 at 14:11
When I add the jQuery UI plugin directly after the jQuery I get the same error in console: Uncaught TypeError: $ is not a function
– Alan A
Nov 10 at 18:35