Skip to main content

Posts

Showing posts from February, 2018

Jquery 2 - part 2

$(document).ready(function() {   $('#tour').on('click', 'button', function() {     $.ajax('/photos.html', {       success: function(response) {         $('.photos').html(response).fadeIn();       }     });   }); }); $(document).ready(function() {   $('#tour').on('click', 'button', function() {      $.get ('/photos.html',  function(response) {         $('.photos').html(response).fadeIn();     });   }); }); ----------------------------------------------------------------------------------------------------------- data-location ="london"> $ ( document ). ready ( function () { var el = $ ( "#tour" ) el . on ( "click" , "button" , function () { $ . ajax ( '/photos.html' , { data : { location : el . data ( 'location' )}, success : function ( response ) { ...