on a web page I'm working on, I got an input area that I'd like to show a hidden CSS element (a DIV) when the input value is set to be greater than 1.
<input type="text" class="NetscapeFix CalTicketQuantity form-control" name="tix_quantity" id="tix_quantity_1842" value="0" size="4" maxlength="4" onchange="calculate(this.form);">
above is the code snippet of the input field, also please see image attached to see how the input looks on the page. Webpage Screenshot
So, if you see the image above, what I'm trying to achieve is to show a div HIDDEN with CSS when "Number of Individual Ticket Tickets:" input is changed to be greater than one.