Why am I getting the ReferenceError
:
manualEntry is not defined error,
when using the following within WordPress?
<a href="#" onclick="manualEntry()">hide</a>
<script>
jQuery(document).ready(function ($) {
function manualEntry() {
$("#details").hide();
}
});
</script>
1 comment
Comments are closed.