I'm trying to call a javascript function when repeater binding from the code behind.
Here is the sample code that i'm tring to call javascript function:
<asp:Repeater ID="summeryR" runat="server">
<ItemTemplate>
<div class="question-head">
<p><%# Eval("QuestionText") %></p>
</div>
<div class="question-respond">
<p><%# Eval("Label", "checkSkipQuestion()") %></p>
</div>
</ItemTemplate>
</asp:Repeater>
here is the javascript function:
function checkSkipQuestion()
{
alert("checkSkipQuestion");
}