So after looking around a bit, I've found console.log() can blow up IE9. So I can't leave any in my code, that being the case, what could I do here?
I have my data_box which displays some text the user has inputted. But, if there is no text, I want to call showMsg(), which creates a new box with some text, 'No Text Here'.
(data_box.length) ? console.log('') : showMsg();
What alternative can I replace 'console.log('')' with to tell that ternary function to do nothing if data_box exists?