Image map not responsive possibly due...

User 2833879 Photo


Guest
1 post

Hello,

I wrote to tech support because my image map is not working. They responded:
One issue could be that you are using multiple versions of jQuery and one or more of those could be causing a conflict. You will want to try removing one of the versions not needed or add a noconflict attribute:


I removed the non-coffeecup one, and my site no longer worked, so I can't remove that one. I'd rather not hire a programmer for this. How do I add a noconflict attribute? Or is there another suggestion?

Thanks.
Risa
User 187934 Photo


Senior Advisor
20,266 posts

Without looking at your page it's hard to tell exactly what's needed but.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script>
var jQ = $.noConflict(true);
jQ(document).ready(function() {
do stuff here........ replace the $ with jQ
});
</script>
//Other version of jquery
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
//other scripts do stuff
</script>

I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.