Delve deep into the best and most clinically relevant new studies on tendinopathy. The focus is what questions the researchers tried to answer and why,
Palpation can be useful for the diagnosis and assessment of tendinopathy, but there are limits. This is because non-painful tendons can be tender, and tenderness
This is an interesting study from the Delaware tendinopathy group among others investigating a host of structural, tissue property, functional and pain factors that may
Had a lovely chat with Shawn Hanlon who is a PhD candidate about his relatively new paper exploring patient features and clinical characteristics and how
jQuery(document).ready(function($) {
var playerContainer = $('#auscast-player-container');
var player = $('#auscast-player');
// Show player and store session
$('#play-auscast').click(function() {
playerContainer.slideDown();
sessionStorage.setItem('auscastPlaying', 'true');
sessionStorage.setItem('auscastSrc', player.attr('src'));
});
// Keep the player open and playing across page reloads
if (sessionStorage.getItem('auscastPlaying') === 'true') {
playerContainer.show();
player.attr('src', sessionStorage.getItem('auscastSrc'));
}
// Close player
$('#close-auscast-player').click(function() {
playerContainer.slideUp();
sessionStorage.removeItem('auscastPlaying');
sessionStorage.removeItem('auscastSrc');
player.attr('src', ''); // Stop playback
});
// Stop stream when another audio plays
$('audio, video').on('play', function() {
player.attr('src', '');
sessionStorage.removeItem('auscastPlaying');
sessionStorage.removeItem('auscastSrc');
});
});