$(document).ready(function(){ $("button").click(function(){ var temp = $("input").val().split("=").pop(); var highres = "https://i.ytimg.com/vi/" + temp + "/maxresdefault.jpg"; var lowres = "https://i.ytimg.com/vi/" + temp + "/hqdefault.jpg"; $(".highres").attr('src' , highres); $(".lowres").attr('src' , lowres); }); });