art-dambrine
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
13 additions and
0 deletions
-
readme.md
|
|
@ -130,3 +130,16 @@ if (isNotAvailable) { |
|
|
|
} |
|
|
|
``` |
|
|
|
|
|
|
|
## e-leclerc.com |
|
|
|
|
|
|
|
``` |
|
|
|
let availabilitySelector = document.querySelectorAll('link[property="availability"]')[0].nextSibling.nodeValue |
|
|
|
|
|
|
|
if(availabilitySelector.includes("indisponible")){ |
|
|
|
console.log("Indisponible.") |
|
|
|
} else { |
|
|
|
console.log("Disponible !!") |
|
|
|
window.open('http://www.titatu.net/', '_blank') |
|
|
|
} |
|
|
|
``` |
|
|
|
|
|
|
|