Hi

I want to remove a control in a placeholder, in a function in JavaScript.
Is that possible?

If so please help.

Fia

Get the element in any convenient way

var oEL = document.getElementById('id');

and remove it

oEL.parentNode.removeChild(oEL);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.