My Stuff
Comments
-
Are you able to add an ID to the link such as this? [HTML]<a href="#" id="scrolllink">Click Here to jump to Section 2</a>[/HTML] If you're able to add the ID, it's trivial using jquery: [HTML]<script> $("#scrolllink").click(function(event){ location.hash = "section2"; event.preventDefault(); }); </script>[/HTML]
-
I found Matt Dahse's book very helpful.
-
Thanks both - we're running custom promotions from sales orders and amending various fields for branding and fulfillment. We need these to update without delay, so that credit card payment amounts are correct and to ensure that orders don't enter our WMS system without being updated, so scheduling isn't suitable on this…
-
We'd love to hear more about people's experience with WMS too.