python - Copy DIV HTML from another URL

Hello I would like to copy Div HTML from another URL and paste/echo it on my website using Python or Jquery Can someone help please

Im using Cpanel and Wordpress

Answer

Solution:

this should point you in the right direction:

var response =  $.get('url');
var content = $(response).find('div_id').html(); // get the html of the div

Source