I want to make the url valid if there is something like the first part of the URL.
Example:
- test.com/images/1.png
- test.com/images/2.png
- test.com/images/3.png
How to apply this in my code bellow, as selecting all URLs in once.
var rules = [
{
"name": "price1",
"url": "https://test.com/images)",
// url : here is when i want to apply the script, like https://test.com/images/%.png
"fields": [
{
"selector": "input[name='data[test]']",
"value": "6"
}
]
}
];