This example demonstrates how to send query string on double click using jquery in asp.net repeater control. I will extend my previous article Add Confirm popup and Repeater Server control in ASP.NET using jQuery.
Here’s is the code snippent of jquery.
<script src="http://code.jquery.com/jquery-1.6.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#table1 tr").dblclick(function () {
location.href = "Repeater-Hyperlink-jQuery.aspx?Title="
+ $(this).find("td:nth-child(1)").text().trim();
});
});
</script>
Output

Download
See live demo
Repeater-Hyperlink-jQuery.rar (1.70 kb)