Может ли кто-нибудь указать на мою ошибку при попытке найти значение атрибута href тега, в котором содержится "123456"?
$('input').click(function(){
$.ajax({
type : "GET",
url : 'transfer.html',
dataType : "html",
success: function(data) {
alert($(data).filter('a[href*="123456"]').attr('href'));
},
error : function() {
alert("Sorry, The requested property could not be found.");
}
});
});
Заранее спасибо:)