I had the same problem, but you can try changing this code
$("#link_button") .button() .click(function () { $("#attachmentForm").slideToggle("fast"); });
:
$("#link_button").button(); $("#link_button").unbind("click").click(function () { $("#attachmentForm").slideToggle("fast"); });
For me, this code solved the problem. But be careful not to accidentally include your script twice in your HTML page. I think that if you do these two things correctly, your code will work correctly. Thanks
Ellington Brambila Jul 08 '13 at 16:02 2013-07-08 16:02
source share