It looks like you are ajaxing in your tabs that have their own jQuery and do not have $.prompt defined.
Instead of using the traditional ready block, use this one that uses the same $ every time.
- jQuery(function($){
- // your code will always use the same $
- })
JΛ̊KE