i need a little bit of help, I am trying to use JavaScript embedded in a SharePoint Content editor web part to hide specific web parts as the items are clicked, however it does not seem to work can anyone give me any hints/ideas?
<script type="text/javascript">
function hidepart()
var hlf = document.getElementById("MSOZoneCell_WebPartWPQ3");
MSOZoneCell_WebPartWPQ3.style.display="none";
}
</script>
enter code here
<a id="myLink" href="#" onclick="hidepart();return false;">Test</a>