Joomla Updating Woes
I’ve stumbled into this problem a couple of times. I solved it a couple of times too. But couldnt quite remember about it. This time I’m making sure it doesnt bother me in the future.
I went into the admin panel, tried to update a content, when I clicked the html button on the wysiwyg, […]
Submit DAMN IT!
Well, I discovered something new (for me that is). Got it from Chovy’s Blog.
javascript:
function checkForm(){
var form = document.someform;
someform.submit();
}
html:
form method=”post” action=”login.php” name=”someform”>
input type=”text” name=”woot” value=””>
input type=”button” name=”submit” value=”login” onclick=”checkForm();”>
When I clicked on the button.. an error appears someform.submit is not a function.
Apparently it collides with the button which is named “submit”. Changing the button name […]
