I am no stranger to front-end development, but I have come across a requirement by a client which I have never done before, and I would appreciate it if someone can point me int
I'm not clear about what part you're having trouble with. Are you able to use ajax to dynamically load the content? Something like this (http://api.jquery.com/jQuery.ajax/):
$.ajax({
url: 'ajax/test.html',
success: function(data) {
$('#mycontent').html(data);
}
});
If you aren't allowed to use ajax, how about an iframe and using the target attribute on yoru links?
Or are you just having trouble with the CSS and getting the dynamic content to overflow correctly?