aHMAD_SQaLli Posted February 6, 2016 Share Posted February 6, 2016 hello if there is just the first function it run very good but if I add the second I get the message in Firefox " TypeError: event.target is undefined " (function(){ document.getElementById("ta").onclick = function(){ ta(); }; function ta(){ var tav = document.getElementById("ta").value, ta = document.getElementById("ta"); ta.setAttribute('style','height:200px;') } })(); window.onclick = function(event) { var tav = document.getElementById("ta").value, ta = document.getElementById("ta"); if (! event.target.matches('#ta')) { if( tav == "" ){ ta.setAttribute('style','height:25px;'); } else if( tav !== "" ){ ta.setAttribute('style','height:200px;'); } } } (function(){ document.getElementById("close").onclick = function(){hide_notify();}; function hide_notify(){ var notify = document.getElementById("notify"); notify.parentElement.removeChild(notify); } })(); I'm still new in JavaScript so I have no idea what is going on ! thanks. Quote Link to comment https://forums.phpfreaks.com/topic/300743-typeerror-eventtarget-is-undefined/ Share on other sites More sharing options...
aHMAD_SQaLli Posted February 7, 2016 Author Share Posted February 7, 2016 Need Help Quote Link to comment https://forums.phpfreaks.com/topic/300743-typeerror-eventtarget-is-undefined/#findComment-1530821 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.