I\'m using a jQuery function to get the value of an checked checkbox.
How to hide the value in the span class \"active-usb\" if the checkbox is not checked anymore?
Since you're asking how to hide it:
$('.active-usb').toggle(this.checked);