I have this code which runs perfectly on jsFiddle. When I try to run that code on my self-hosted WordPress site, however, it will not run. (The code is exactly the same on my page, except that I added <script type="text/javascript" src="/files/jquery-1.8.3.min.js"></script> before the Javascript on the page.) The Javascript is directly in the Text tab of my page, JS first followed by the HTML. The form loads properly, but clicking the "Add Row" button does nothing.
I had this issue on another page on my site, but it was fixed by wrapping everything in
$j(document).ready(function(){
// code
});
and using jQuery noConflict mode. I implemented that here (as you can see in the code), but it is not working.