I have very little experience with jquery so for someone reading this question this might appear to have a very obvious solution. But for me, I can't seem to figure it out.
I have a webform (code behind VB) with tabcontainer in it, which in turn has a tabpanel in it, which has my formview on it. I have defined a jQuery generic function. I want to access this function from my formview edititemtemplate textbox, on keydown, something like $("input[type=text]").keydown(function () {....}
Somehow this function is not getting accessed at all.
Whereas when I access this function from a textbox which is outside tabcontainer, then the function is accessible perfectly.
What I am trying to do is this:
In my formview when I am in edit mode, I want to click inside a textbox and then call the jquery function. BTW I have put my jquery function in the <head> tag of my aspx page. So in order to do this I have used a generic jquery function which works for any textbox which is something like
$("input[type=text]").keydown(function () {....}
Should I be using the tabcontainer name or tab panel name or form name?
Can someone pls tell me how to get this function to work from formview edititemtemplate textbox? Also some code example will be of real good help.