Пытался удвоить этот код
Вставь ссылку на изображение
<script type="text/javascript">
$( function () {
setImage();
photo.oninput = setImage;
function setImage(){
if(isUrl(photo.value))result.src = photo.value;
}
function isUrl(url){
return /http(s?):\/\/[-\w\.]{3,}\.[A-Za-z]{2,3}/.test(url);
}
} );
</script>
<input id="photo" value=""><br>
<img id="result" height="150px">
вот так
Вставь ссылку на изображение
<script type="text/javascript">
$( function () {
setImage();
photo.oninput = setImage;
function setImage(){
if(isUrl(photo.value))result.src = photo.value;
if(isUrl(photos.value))results.src = photos.value;
}
function isUrl(url){
return /http(s?):\/\/[-\w\.]{3,}\.[A-Za-z]{2,3}/.test(url);
}
} );
</script>
<input id="photo" value=""><br>
<img id="result" height="150px">
<input id="photos" value=""><br>
<img id="results" height="150px">
но глючит немного , что я сделал не так ?