24.01.2017, 23:06 
(This post was last modified: 24.01.2017, 23:08 by Erwin van der Zwart.)
		
	
	
		Hi Buuuudzik,
It is as far as i know not possible to add a event handler to the plan ID, but you could solve it like this:
BR,
Erwin
	
	
	
It is as far as i know not possible to add a event handler to the plan ID, but you could solve it like this:
Code:
var planID = currentPlanId;
var PlanIDCheck = setInterval(
function(){
  if (planID != currentPlanId){
    planID = currentPlanId;
      alert("Plan Changed");
    // Put here your additional actions
  }
}, 1000);BR,
Erwin
 
 

