cannot access asp.net server side control from jquery
Label
<label id="lblClanName" runat="server">Something here</label>
Jquery
$('#test').click(function () {
var yle = ('#"<%= lblClanName.ClientID %>"').val;
alert(yle);
});
button:
<input type="button" id="test" value="TesTme" />
alert returns undefined