How would I use contains to search for a placeholder to search for the word "name" and set the value rather than search the exact value of a placeholder.
Here is the html:
<input autocorrect="off" placeholder="full name here" id="order_billing_name" name="order[billing_name]" size="30" class="" type="text">
$('[placeholder="full name here"]').val('name here');
You can use attribute value contains selector
$("[placeholder*=name]").val("name here")
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
</script>
<input autocorrect="off"
placeholder="full name here"
id="order_billing_name"
name="order[billing_name]"
size="30"
class=""
type="text">