Hello i having the following JavaScript code inside update panel that get parameter based on user selection and store it in hidden filed
the code works fine in first attempt but after i execute method btnsearch1_Click the code wont run until i refresh the page
<script type="text/javascript">
$(document).ready(function (e) {
$('.search-panel .dropdown-menu').find('a').click(function (e) {
e.preventDefault();
var param = $(this).attr("href").replace("#", "");
var concept = $(this).text();
$('.search-panel span#search_concept').text(concept);
$('[id$=hdnSearchParam]').val(param);
...
Go to the complete details ...