ProductCart E-Commerce Solutions Homepage
Forum Home Forum Home > ProductCart > Customizing ProductCart
  New Posts New Posts RSS Feed - how to add a plus minus beside add to cart bt
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

how to add a plus minus beside add to cart bt

 Post Reply Post Reply
Author
Message
fire View Drop Down
Newbie
Newbie


Joined: 29-December-2008
Status: Offline
Points: 0
Post Options Post Options   Thanks (0) Thanks(0)   Quote fire Quote  Post ReplyReply Direct Link To This Post Topic: how to add a plus minus beside add to cart bt
    Posted: 07-January-2009 at 11:45pm
Does any one know how I can add a plus minus beside add to cart button? Instead of having to enter a number for the product I want to have a + or - tab....
-----edit
Just in case someone is trying to actually use this forum...and wants to add something like the above...here is the basics of what I did.

I have my products come up (display) with the :In a list (multiple add) way this page is (pcShowProductM.asp) it may be different for you depending on how you display products. Also make sure you save a copy of your page just in case.
Find in Editor
<input name="QtyM<%=pidProduct%>" type="text" value="0" size="2" maxlength="10" onBlur="<%=pcv_strOnBlur%>">

Add id (id="qty<%=pidProduct%>" ) after (type=text) and then add...

<%'///////////////////////////////////////Added by YOU - increase decrease javascript - plus id="qty<=pidProduct>" above...///////////////////////////////%>  
 
<input type='button' name='add' onclick='javascript: document.getElementById("qty<%=pidProduct%>").value++;' value='+'/>
<input type='button' name='subtract' onclick='javascript: document.getElementById("qty<%=pidProduct%>").value--;' value="-" />

insert just before <% Else %>

THIS WORKS FOR ME IT MAY NOT FOR YOU BUT SHOULD:)


Edited by fire - 08-January-2009 at 6:58pm
Back to Top
fire View Drop Down
Newbie
Newbie


Joined: 29-December-2008
Status: Offline
Points: 0
Post Options Post Options   Thanks (0) Thanks(0)   Quote fire Quote  Post ReplyReply Direct Link To This Post Posted: 08-January-2009 at 6:55pm
If this does not make sense let me know I will try to explain better
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.031 seconds.