I\'m trying to use a jQuery selector that finds all input fields with a specific name:
$(\'input[name=Filter\']).click(function() { // do something }); <
Based on my comment to the question I can confirm that this does work...
$('input[name="Parent.Filter"]').click(function() { });
Working example here