I want to click on a button in a popup using javascript. When i search it with internet it only shows how to minimize. Is anyone know how to do it?
Thanks in dvance.
I want to click on a button in a popup using javascript. When i search it with internet it only shows how to minimize. Is anyone know how to do it?
Thanks in dvance.
As the Pop up window is added dynamically you can use a delegate for that
$('body').on('click',"#buttonid", function(){
//write code here
})