Hi
This function is great
add_action( ‘ava_after_main_menu’, ‘enfold_customization_header_widget_area’ );
function enfold_customization_header_widget_area() {
dynamic_sidebar( ‘header’ );
}
And I then create a widget called header.
My only issue is the code gets placed within the header tags. But not within head tag… this causes issues for me as this code
<style>
#draggable { width: 150px; height: 150px; padding: 0.5em; }
</style>
<script>
$(function() {
$( “#draggable” ).draggable();
});
</script>
Must be placed within the actual head tags of my page. I am following this example
http://jqueryui.com/draggable/
And attempting to recreate it on this test page
http://217.199.187.198/beachhousetwo.co.uk/testdrag/
okay if you go to the test drag its actually been resolved as ive got the code in the head tags
still how ever the jquery is failing is this an enfold issue?