Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
I made a site using SlideUp and FadeIn as main choice to transition between the content, everything was working well but suddenly stopped working today and i have no idea how to fix it.
I opened the console and don't call any error, i try to remove all scripts but still not working.
Here's the URL from the site ( Here )
All errors on the console comes from the iframe
Edit 1 : Ok it's working now... and the best is i dont touch in the code, just start to work again :)
Actually if you see your console you will some errors, those are jQuery Migrate Plugin - Warning Messages. To resolve all these warning have a look at this link:
jQuery Migrate Plugin - Warning Messages
Related
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 2 years ago.
Improve this question
I am busy working on this website (http://backtohealth.co.za/home.php) but many of the images are not loading in correctly. I have tried pre-loading the images and changing height values but neither worked. This issue only seems to be with the current host as when I tried with another host there were no issues. What could the issue be?
Go to Chrome Dev Tool (F12), tab Network, filter with Img, you will see most of picture is loading in the half. So the problem causing by the image's source it self (the server), not causing by the site.
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 3 years ago.
Improve this question
I've spent last five days looking for solution for google tag manager and nothing find.
I've instal GTM module for the Drupal 7 and got next generate code and behaving for page of product.
I noticed strange behaviour in GTM after enabling GTM in google admin page.
He automatic redirect to another page product after i clicked in on product.
I have understand way why this happens with img 1 but don't now how to fix it.
differents urls in datalayer and current location
I am not sure if I understand the question correctly. That you are redirected is the expected behaviour.
There is an eventCallback in the dataLayer. There specified is a JS function that is executed when the tags associated with that event have been fired. In your case that JS function is a redirect, and it redirects to "https://constructors.com.ua/lego-super-heroes/lego-super-heroes-perehvat-kriptonita-76045", so if that is what you are seeing then everything works as it should.
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
I have acidentally disabled alerts on codepen.io and I need it for a website I am making. I pressed the "Prevent this page from making additional dialogs." Please tell me that there is a way to fix it. I have looked at all the other questions towards fixing, but none of them work. Closing and reopening the tab will not work either. Please help!
Steps to reproduce:
Run the following JavaScript:
alert('first');
alert('second');
Click OK on the first alert.
Check "Prevent this page from making additional dialogs." and click OK on the second alert.
Reload the page.
Thanks in advanced!
Just close your browser and re-open it. It is not permanent.
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
I'm trying out jQueryUI for the first time, and I'm trying to use the draggable function, for a div as follows:
$("#draggable").draggable();
However If I refer to the google hosted jQuery API, it doesn't seem to work :
script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min.js"
But if I download and use a local copy of the library, it works :
script src="jquery-ui.min.js"
Am I missing something?
I noticed that the problem was not the hosted api. I was referencing the jquery.min.js file after referencing the jquery-ui.min.js. When I corrected the order, it worked. I guess jquery-ui.min.js was using assets from the jquery.min.js library, and was erroring out when it couldn't find a reference to it.
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
I'm trying to make buttons draggable and droppable using jQueryUI. I know that in order to do this, I have to set the cancel attribute; however, it doesn't seem to be working in this specific case. My code is on this jsfiddle.
As you can see, I've set the button to alert the html of the button when it's clicked, but having this function doesn't allow me to drag the button anymore. If I remove it, my button can be dragged. If I remove the cancel:false attribute, it (correctly) disables dragging, so I'm not sure why it's not letting me drag when the .on(click) is present.
function init() {
$('#makeMeDraggable ul li').draggable({cancel:false});
}
$("#unorderedlist").on('click','li',function(){
alert($(this).html);
}
Can anyone help me?
If you looked at your console you'd have noticed that you had a syntax error...
$("#unorderedlist").on('click','li',function()
{
alert($(this).html);
}
Should be:
$("#unorderedlist").on('click','li',function()
{
alert($(this).html);
});
Also, you were using a very old version of jQuery. I've updated the fiddle to a more recent version
This works now:
fiddle
So, always run your code with your browser's developer tools (often via F12) open so you can catch errors