Change it to .on
or .delegate
based on the version of jQuery you are using..
As of jQuery 1.7+
$(document).on('click', '.fClick', function(){
alert("hey!");
});
For older jQuery versions use delegate
$(document).delegate('.fClick', 'click', function(){
alert("hey!");
});