With the following code, I can open a new window by hiding various browser components ...
<a href="#" onClick="javascript:visualControl('newpage.html'); return false;">
SampleText!
</a>
function visualControl(str) {
window.open(str, 'popupwindowalpha','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,menubar=no');
}
But I would like to open the page , hiding these components, is that possible?
OU connect and disconnect these components on the same page ...
* Important detail, eh for an internal application , for the corporate intranet just to make the cleaner look / p>
Thank you!