Hello,
I'm having a problem handling postback in my page. I have a dropdownlist that is binded and set the autopostback to true.
Onchange of the dropdown i'll set the focus to an anchor in my masterpage and seems to work for me, however when the page postback the focus is gone.
any idea how to do it?
here is the sample code i used.
$(document).ready(function() {
var _ddVendors = $("#ctl00_PlaceHolderMain_ddVendors"); //dropdown
var _tblVendor = $("#tableVendor"); // anchor
_ddVendors.change(function() {
&nb
View Complete Post