I am using jQuery Slider from http://jqueryui.com/slider/ whenever you change a slider i just perform the function without loading the whole page using slider value. For Example I am using slider control to filtering the content. I am using jQuery load to perform the filtering function but looks like slider has disappear after load the content.
Following is the sample code without ajax, I am using ajax everything works without slider. Not sure why jquery load is not load the script or something i missed?
Here is my fiddle http://jsfiddle.net/q5c5T/
Here is my screenshot if i use jquery.load without space this is the error i got

HTML
<div class="content">
This is for testing
<div class="master">
</div>
</div>
JS
$( ".master" ).slider({
value: 60,
orientation: "horizontal",
range: "min",
animate: true,
change: function(event, ui) {
//ajax request here
alert(ui.value);
jQuery(".content").load(window.location + " .content");
}
});
return false;