En un iframe, tengo un botón con evento onclick="disabledbutton()", pero me sale este error: disabledbutton is not defined, por tanto no funciona.
<script type="text/javascript">
function disabledbutton() {
var getvalue=window.parent.document.getElementById("ca ncel_photo_editor_0001010").getAttribute("aria-disabled");
if (getvalue=="false")
{
window.parent.document.getElementById("cancel_phot o_editor_0001010").setAttribute("aria-disabled", "true");
} else {
window.parent.document.getElementById("cancel_phot o_editor_0001010").setAttribute("aria-hidden", "false");
}
}
</script>
y en la hoja contenedora del iframe:
<button aria-disabled="false" id="cancel_photo_editor_0001010"></button>
¿Alguna sugerencia?