syntax - Meaning of ${} in javascript -


i need work on javascript lately. unfortunately, newbie.
have come across following code , don't understand meaning of ${count == 0}.

function body_onload() {     if(${count == 0})     {         document.getelementbyid("dispaly").style.display="none";     }        scanimagereportfrom.shopcodes.focus(); } 

thank you.


finally found this can solve question.

it's not you. :-) that's not valid javascript (the { triggers syntax error).

it perhaps token pre-processor replaces before javascript passed javascript engine.


Comments

Popular posts from this blog

javascript - Unusual behaviour when drawing lots of images onto a large canvas -

how can i manage url using .htaccess in php? -

javascript - Chart.js - setting tooltip z-index -