jQuery is frequently used in ISML templates. B2C Commerce supports versions up to and including jQuery 1.3.2.
Avoid using the # character in jQuery or JavaScript because it's reserved in ISML templates and can cause problems.
However, there might be cases where you need to use the # character. In these cases, instead of the following code:
<a id="id-to-select" href="...">...</a>
<script type="text/javascript">
jQuery("#id-to-select").click(function() {
// Code here
});
</script>
Use the following code:
<script type="text/javascript">
jQuery("a[id='id-to-select']").click(function() {
// Code here
});
</script>
Alternatively, the following notation:
<a href="#">Link</a>
is correctly written in ISML as<a href="${'#'}">Link</a>