JQuery with DataList
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
<script type="text/javascript">
$(function() {
$(".showreply").click(function(evt) {
evt.preventDefault();
$(".reply").slideToggle('slow');}); });
</script>
<HeaderStyle Height="0px" />
Reply By:
Department:
Designation:I think you should find something unique to identify the div. for example modify the s1 div to be run at server(this would give it unique values of id every single instant). then add the id to the JQuery selector
$("#" + this.id + " div.reply").slideToggle('slow');
Good Luck
Help people,so poeple can help you.