Skip to content

Instantly share code, notes, and snippets.

@robozavri
Created July 6, 2018 12:12
Show Gist options
  • Save robozavri/ef218866fead265b37d73cdf5bef4651 to your computer and use it in GitHub Desktop.
Save robozavri/ef218866fead265b37d73cdf5bef4651 to your computer and use it in GitHub Desktop.
js parse ajax returned html
complete : function(data){
var html = $.parseHTML( data );
var container = $(".accomodation", html);
$(".accomodation", html).each(function(index,item){
AllCurrentAccomodations.push($(item).attr('data-id'));
console.log($(item));
console.log($(item).attr('data-id'));
console.log(item);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment