Esa es una función básica de javascript, no hace falta plugín alguno para eso.
   
Código HTML:
Ver original- <!DOCTYPE html> 
- /*<![CDATA[*/ 
- input[type='button']{ 
- background: lime; border: solid 1px transparent; border-radius: 4px; font-weight: bold; cursor: pointer; 
- } 
- /*]]>*/ 
- <script type="text/javascript"> 
- //<![CDATA[ 
- function suma_resta(s){ 
- var valor = parseInt(document.getElementById('cantidad').value); 
- if(s == '+'){ 
- document.getElementById('cantidad').value = valor+1; 
- }else{ 
- if(valor !== 0){ 
- document.getElementById('cantidad').value = valor-1; 
- } 
- } 
- } 
- //]]> 
- <input type="text" size="2" id="cantidad" value="0" readonly/> <input type="button" value="+" onclick="suma_resta('+')" /> <input type="button" value="-" onclick="suma_resta('-')" />  
Saludos