• On every file in wp-admin, when I push a button or try to type in an option I get an error that says.
    A Runtime error has occured on Line 50. How can I fix this? When I say to debug it shows this code from edit.php

    aInputs[i].onclick = function() {
    var inputColl = GetElementsWithClassName('input','valinp');
    var rel = document.getElementById('rel');
    var inputs = '';
    for (i = 0; i < inputColl.length; i++) {
    if (inputColl[i].checked) {
    if (inputColl[i].value != '') inputs += inputColl[i].value + ' ';
    }
    }
    inputs = inputs.substr(0,inputs.length - 1);
    rel.value = inputs;
    }

    the error happens at rel.value-inputs; This makes using WordPress horrible! Please help.

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Null is null or not an object’ is closed to new replies.