Hi,
This code only fill the first input – notice the “input:first”:
jQuery("#dffs_YourFieldInternalName input:first").val("The value you want to fill in");
If you want to fill the same in both inputs you can just use this:
jQuery("#dffs_YourFieldInternalName input").val("The value you want to fill in");
If you however want to add a text to the last you use this:
jQuery("#dffs_YourFieldInternalName input:last").val("The value you want to fill in");
Let me know if you have any questions.
Best regards,
Alexander