forget my question for a while... bad choice of words
i am using this code for a jQuery Cycle Slideshow...
script is here... you may skip it and proceed to question
<script type="text/javascript" src="code_snipets/jquery.js"></script>
<script type="text/javascript" src="code_snipets/jquery_plugin_cycle.js"></script>
<script language="javascript" type="text/javascript">
$(
function()
{
$('ul#ullist').cycle(
{
fx: 'scrollHorz',
speed: 3000,
sync: 0,
prev: '#prev',
next: '#next',
height: 'auto',
cleartype: 1,
timeout: 10000
}
);
}
);
</script>
style is here... you may skip it and proceed to question
ul
{
display : block;
margin : 0;
padding : 0;
width : 280px;
height : auto;
overflow : hidden;
}
ul li
{
width : 280px;
display : block;
color : #e0e0e0;
font-family : Verdana;
font-size : 11px;
}
html code is here
<ul id="ullist2" class="ul_li">
<li class="ul_li"><img src="images/bu_logo.png"></li>
<li class="ul_li"><img src="images/bu_title.png"></li>
</ul>
now i am using LIST for my images... how can suggest a directory.. meaning just specify a directory and it should pick all images from directory...