简体   繁体   中英

Call ID from external javascript file

I'm building a TinyMCE custom dropdown menu in WordPress. I am able to call a form into the thickbox modal window if I include the form in the same javascript file as the dropdown menu, but I want to be able to call a form from an external javascript file. Here's the code that allows me to call it inline:

b.add({
title:"MyLink","class":"tmce-mylink",onclick:function(){
var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width; 
W = W - 80; 
H = H - 80; 
tb_show( 'MyLink', '#TB_inline?width=' + W + '&height=' + H + '&inlineId=mylink-form' );
}
}
);

The key component there is this line:

tb_show( 'MyLink', '#TB_inline?width=' + W + '&height=' + H + '&inlineId=mylink-form' 

How can I modify this to call the form id from an external JS file into the TB modal?

我发现只要注册表格,我就可以在任何地方调用它。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM