Please explain what is this.value in the below code.
What value will be passed in the second parameter of calcLapseDays function.?
I guess current text box value but current textbox value is blank then what will be the value.
Please guide.
sample:
<html:text property="flEndDt" readonly="true" tabindex="<%=(i2++).toString() %>"
onfocus="calcLapseDays(document.forms[0].reqRcvdDate.value,this.value)"`/>
Because the function is called on an inline event handler,
thiswill point to the DOM element from which the event originated.