Hello,
Got some problems by adding custom jquery image slider,
in html it will take few rows, for example:
<html>
<head>
<script src="jquery-1.7.2.min.js"></script>
<script src="jqFancyTransitions.1.8.js" type="text/javascript"></script>
</head>
<body>
<div id='slideshowHolder'>
<img src='/img/01.png' alt='img3' />
<img src='/img/02.png' alt='img2' />
<img src='/img/04.png' alt='img3' />
</div>
<script>
$(document).ready( function(){
$('#slideshowHolder').jqFancyTransitions({ width: 700, height: 250 });
});
</script>
</body>
</html>
But i can't find which web part should i use for this. Added jq call in the head with headHTML part and tried to use another webparts with html envelope after content to call slideshowholder images and script, but im getting only images under each other
Best regards