Home › Forums › JavaScript › Matching a numerical variable › Reply To: Matching a numerical variable
December 3, 2014 at 2:53 am
#189821
Participant
`
var speed = 62;
if (speed === 62){
$( "path[id|='lcd1']" ).css( {"opacity": "0" , "fill-opacity": "0","visibility": "hidden" });
$( "path[id|='lcd2']" ).css( {"opacity": "0" , "fill-opacity": "0","visibility": "hidden" });
}
`