Hi,
We download the files you sent and it seems that the problem is with this plugin, bind-user-to-cat, that generates some errors.
To fix it you can edit bind-user-to-cat.js and replace
function init() {
var t = document.getElementById("bindusertocat");
var d = document.createElement("div");
d.id = "addRow";
var b = document.createElement("input");
b.type = "button";
b.value = "+";
t.parentNode.appendChild(d).appendChild(b);
addDeleteButtons(t);
b.onclick = addRow;
//document.createElement("input").type
}
with
function init() {
var t = document.getElementById("bindusertocat");
if ( t ) {
var d = document.createElement("div");
d.id = "addRow";
var b = document.createElement("input");
b.type = "button";
b.value = "+";
t.parentNode.appendChild(d).appendChild(b);
addDeleteButtons(t);
b.onclick = addRow;
//document.createElement("input").type
}
}
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Please let us know if there’s anything else we can help you with.
Best wishes,
YOP Team