Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Transitions lost but only in Chrome
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Transitions lost but only in Chrome
#13279
Transitions lost but only in Chrome 13 Years, 3 Months ago Karma: 0
www.vlp.org.uk/newsite/

Transitions work fine on Firefox and IE, but not Chrome. I think it used to work on Chrome. Puzzled!!

Steve.
The administrator has disabled public write access.
 
#13282
Re:Transitions lost but only in Chrome 13 Years, 3 Months ago Karma: 748
Hello,

It is not "ARI Image Slider" problem. This problem with your site template or 3rd party extension which includes the next code:

Code:


<script type="text/javascript" src="/newsite/js/jquery-1.2.3.pack.js"></script>
<script type="text/javascript" src="/newsite/js/jquery.metadata.min.js"></script>
<script type="text/javascript" src="/newsite/js/jquery.maphilight.js"></script>
<script type="text/javascript" src="/newsite/js/easyTooltip.js"></script>
<script>
$(function() {
$('.map').maphilight({fade: false}); /*set true for fading hover effect*/
$('map > area').easyTooltip();
});
</script>



it should be:

Code:


<script type="text/javascript" src="/newsite/js/jquery-1.2.3.pack.js"></script>
<script type="text/javascript">
jQuery.noConflict();
</script>
<script type="text/javascript" src="/newsite/js/jquery.metadata.min.js"></script>
<script type="text/javascript" src="/newsite/js/jquery.maphilight.js"></script>
<script type="text/javascript" src="/newsite/js/easyTooltip.js"></script>
<script>
$(function() {
$('.map').maphilight({fade: false}); /*set true for fading hover effect*/
$('map > area').easyTooltip();
});
</script>



Regards,
ARI Soft
The administrator has disabled public write access.
 
#13287
Re:Transitions lost but only in Chrome 13 Years, 3 Months ago Karma: 0
Thanks for the quick help. That fixes the problem but stops some of the interactive features of the "Interactive Map" page on the site, to which that code relates.

Actually not really a problem I don't think. I'm out of my depth with this now...!

Cheers, Steve.
The administrator has disabled public write access.
 
Go to topPage: 1