Skip to content

Instantly share code, notes, and snippets.

@rubenCodeforges
Created June 2, 2014 08:38
Show Gist options
  • Save rubenCodeforges/c63db0dfc7302fd2498b to your computer and use it in GitHub Desktop.
Save rubenCodeforges/c63db0dfc7302fd2498b to your computer and use it in GitHub Desktop.
$.ajax({
url: "/theme/coursesearch/layout/menu_courses.php",
cache: true,
async: true,
success: function(html){
// Внутри саксеса ты вставляеш код который должен получить данные пришедшие с сервера
$('.navbar .nav a').each(function(){
$(this).parent().append('<div class="drop"></div>');
$(this).html(html);
})
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment