@arminunruh said:
substr(12)
Perfect Armin! The .substr was exactly what i needed ! You are great as always !
Thanks
@arminunruh said:
substr(12)
Perfect Armin! The .substr was exactly what i needed ! You are great as always !
Thanks
@arminunruh This work fantastically great ! Thanks for your help ! I have edit the script to have the text scramble each time the mouse is moving though body :+1:
Frontend.GlobalEvents.on("newpageshown", function(layoutObj, type, obj){
var scramble = jQuery("#scramble").splitText({
'type':'words',
'animation':'scramble'
});
jQuery("body").on('mouseover', function(){
scramble.animate();
});
});