My site CSS is not showing [duplicate] - javascript

This question already has answers here:
Uncaught ReferenceError: $ is not defined?
(40 answers)
Closed 6 years ago.
i have recently bought a template for a Betting site for CSGO,
but now when i'm setting it up i get these weird errors, if you go to the site and
go to console you can see exactly what i get. How can i fix these problems?
site is : csgohulk.com
like this one : main18.js:1 Uncaught ReferenceError: $ is not defined
what is wrong ?
and Uncaught ReferenceError: jQuery is not defined ?
i can give you more info if you want..,
I have not tried so much because i'm not so good at programming
so i really need help
thanks //Wiz

The issue seems to be your jquery isn't loading from http://csgohulk.com/js/jquery-1.10.2.js
You are getting a 404 (not found) error.
You should first check that this file is even present on your server. If it isn't that is your problem. It could also be that the file is there but there are permission issues to access it.
Try replace <script src="/js/jquery-1.10.2.js"></script> in your html with <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
See if that fixes it. (if it does then fix your file at /js/jquery-1.10.2.js on your server to be the same as the one here)
Then if there are other files that aren't loading then fix them too. Until there are no 404 errors displaying in the console of the browser.

Related

Javascript error when running on different pages

I have a standalone form. My issue is when I run the form standalone it runs fine but when the form code is included in some other page where it is supposed to be displayed it shows
Uncaught TypeError: Cannot read property 'value' of undefined at submit:10
I have tried debugging it from last few hours but still not able to find the exact issue. could someone please point out where the mistake might be. It could be some small error but it will be really helpful if you could point it out.
Both the forms are these: Standalone form and form included in a page
The moment you load your page you will see an error:
Uncaught ReferenceError: field is not defined
That is because field is defined here:
https://simrec.custhelp.com/rnt/rnw/javascript/enduser.js
which is not included in the other page. You are using new field() in your code without having it defined. Fix that and the rest could work if it's working in the standalone form.

Mixpanel error: "mixpanel" object not initialized [duplicate]

This question already has answers here:
mixpanel-2-latest.min.js:9 Mixpanel error: "mixpanel" object not initialized
(7 answers)
Closed 5 years ago.
I am getting the below error.
I am using Angular - I have not imported a mix panel library - if I do a search I cannot find this.
Why am I getting this error/how can get rid of it?
Mixpanel error: "mixpanel" object not initialized. Ensure you are
using the latest version of the Mixpanel JS Library along with the
snippet we provide.
If you are not using mixpanel in your code, you should check whether it is one of your extensions.
In my case it was the PageRuler extension and started happening only today.
Check your extensions, for me it was 'Page Ruler'
["https://chrome.google.com/webstore/detail/page-ruler/jlpkojjdgbllmedoapgfodplfhcbnbpn?hl=nl"] that caused this error.
Disable all extensions until the error does not occur anymore.

javascript function in source code, but not 'not defined' [duplicate]

This question already has answers here:
Is it possible to load new Javascript files with AJAX?
(7 answers)
Closed 7 years ago.
Below, i have included a screenshot form the F12 view in chrome.
My problem is: Uncaught ReferenceError: callModal282876547 is not defined.
The other errors are not an issue.
I don't know if this is relevant, but the code that is shown was loaded into the page by an ajax call (including the javascript).
The error occurs when i click the button, and tells me the function is not defined, but it is clearly present in the code? What can cause this, and how would i solve this problem?
The browser doesn't know anything about the new function you brought with ajax response. So, you must eval() your declaration code returned by the Ajax callback and make it available to DOM.

Dynamic java script zoom error in vb.net project

I inherited a legacy VB.net project that always has the following error:
document.body.style.zoom = screen.logicalXDPI / screen.deviceXDPI;
The exact error message from VIsual Studio is as follows:
JavaScript runtime error: Unable to get property 'style' of undefined or null reference
I have searched the entire solution, but none of the relevant variables/attributes show up.
I assume this is a javascript or jquery problem, the debugger says that it is a script block [dynamic] and the Call Stack says that it is global code.
Has anyone seen this error before?
Please help. Thanks in advance.
Believe it or not, removing add-ins in the browser did the trick (thanks to a colleague). It's not in the code-base at all in this case. The specific culprit was a MacAfee add-in. I never would have guessed this.

Uncaught ReferenceError: chrome_fix3 is not defined _cmp_execLogic._cmp_suclick

I am getting the following error. How can I resolve this?
Uncaught ReferenceError: chrome_fix3 is not defined
_cmp_execLogic._cmp_suclick
Good news - the error is nothing to do with your site.
Bad news - it's caused by an erroneous browser extension that's injecting invalid javascript into your pages. I have an ever increasing list of similarly caused errors that we can do nothing other than trap and ignore. At some point I intend to feed a message back to the user that something they have installed may cause problems on our sites, but ideally I'd like to tell them exactly what extension is causing the issue, which I don't know in all cases.
If anyone knows where the attempt to reference "chrome_fix3" actually comes from, please add to this post.
A similar error that we trap but is nothing to do with our code is:
Uncaught ReferenceError: conduitPage is not defined
I found the following pages helpful when investigating the error:
https://webmademovies.lighthouseapp.com/projects/65733/tickets/2895-crash-referenceerror-conduitpage-is-not-defined
http://www.youtube.com/user/conduityoursite#g/c/4B820DE13E03888D
Your code tries to refer to a variable or property that does not exist, in your case it's named chrome_fix3.
This probably came from a javascript libary that you are using, maybe jQuery or something.
I assume that the library is fine and it's caused by wrongfully calling some of it's functions.
The best way now is to install the Firebug plugin in Firefox (you could use Chrome, Opera or Internet Explorer's debugger but I like Firebug best)
Then add following code in your code where you think it's going wrong:
//add the following line only once:
var okCounter=0;
// add teh following line every couple of lines in your code:
console.log("still ok here:",okCounter++);
Open your page in Forefox and hit F12, the Firebug window should show up now. Reload the page and check out the console tab.
At some point you should notice there is no more output to the console where there should be; now you have found the part in your code where something goes wrong. If you post that part we might be able to help you out more.

Categories

Resources