I have J Query events is assigned in document.ready, my page is also have update panel. when partial post back is happened in the page, I loss J query events.
is there Conflict between document.ready and update panel? how can I solve that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||
|
|
document.ready function will not work after a call back .. you need to call that function after every post back.. there are number of solutions 1) use pageLoad instead of document.ready
2) or you can register your function after a call back
3) or you can call your function in
|
|||
|
|
|
The try this
|
|||
|
|
