Jump to content

function remove doesn't work, please help...


sjns

Recommended Posts

Hi, If someone here is willing to help me I would really appreciate

 

the function removeInput() of javascript at below not work properly, what i should do?

 

<script language="javascript">
fields = 0;
function addInput() {
    if (fields != 10) {
        var htmlText =  "<input type='text' name='friends[]' value='' size='auto' maxlength='45' /><br />";
        var newElement = document.createElement('div');
        newElement.id = 'addfriend'; 
 newElement.innerHTML = htmlText;

        var fieldsArea = document.getElementById('addfriend');
fieldsArea.appendChild(newElement);

        fields += 1;
    } else {
        alert("Only 10 friends allowed.");
        document.form.add.disabled=true;
    }
}
//field = 0; 

function removeInput() {    //======= doesn't work ===========
	var div = document.getElementById('addfriend');
        var lastElement = document.removeElement('div');
        lastElement.id = 'addfriend'; 
	if (lastElement > 2) div.Element(lastElement - 1);

}
</script>

Thanks a lots

Link to comment
https://forums.phpfreaks.com/topic/217336-function-remove-doesnt-work-please-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.