Hello everyone:
I'm trying to use the easySlider jquery plugin.i want just to reproduce.
http://cssglobe.com/lab/easyslider1.5/01.html
I see the images in a list,but can't see Next,Previous Links.
Do i should add them to my html even they are not in the demo page.
here is the code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="EasySlider.aspx.cs" Inherits="jQuery.EasySlider" %>
img{border:none;}
pre{
display:block;
font:12px "Courier New", Courier, monospace;
padding:10px;
border:1px solid #bae2f0;
background:#e3f4f9;
margin:.5em 0;
width:500px;
}
#slider ul, #slider li{
margin:0;
padding:0;
list-style:none;
}
#slider li{
width:696px;
height:241px;
overflow:hidden;
}
span#prevBtn{}
span#nextBtn{}
</style>
<script src="easySlider1.5.js" type="text/javascript"></script>
<script src="jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#slider").easySlider();
});
</script>
</div>
<a id="nextBtn"></a>
<a id="prevBtn"></a>
</div>
</form>
Thanks in advance.