Skip to content

Instantly share code, notes, and snippets.

@riq363
Created April 15, 2015 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save riq363/4755e5eb9f6f13fb5f79 to your computer and use it in GitHub Desktop.
Save riq363/4755e5eb9f6f13fb5f79 to your computer and use it in GitHub Desktop.
Add placeholder for Order Comments in Ecwid
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
Ecwid.OnPageLoad.add(function(page) {
if (page.type == 'CHECKOUT_PAYMENT_DETAILS') {
$('textarea.ecwid-PaymentCommentsBlock-textarea').attr('placeholder', 'row 1\nrow2\nrow3');
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment