Hi Jelen,
A short answer:
<script>
jQuery.noConflict();
// Use jQuery via jQuery(...)
jQuery(document).ready(function(){
jQuery("div").hide();
});
// Use Prototype with $(...), etc.
$('someid').hide();
</script>
should be placed
after the jquery.js to work.
From my memories, eform doesn’t require js to work... but you have a mistake in the line loading the css, maybe is this what you where talking about? :
<link rel="stylesheet" type="text/css" href="/prodaja/assets/snippets/eform/contact.css" />
should be :
<link rel="stylesheet" type="text/css" href="assets/snippets/eform/contact.css" />
for the css to be loaded (excuse me for my english...).
if yshout doesn’t load in gallery page (maxigallery?), maybe it’s because there’s a conflict.
Try to replace the call in yshout snippet with this :
<script type='text/javascript'>
jQuery(document).ready(function(){
new YShout({
yPath: 'assets/snippets/yshout/'
});
});
</script>
$ is replaced with jQuery and there shouldn’t be anymore conflict.
Hope this helps.