in my code three input type=file elements for those css style is bind with button id of input tag. its working fine
//<![CDATA[
$(window).load(function() {
$('.new_Btn1').bind("click", function() {
$('#html_btn1').click();
});
$('.new_Btn2').bind("click", function() {
$('#html_btn2').click();
});
$('.new_Btn3').bind("click", function() {
$('#html_btn3').click();
});
});//]]>
i want to minimize my code as single one instead of three, how i can achieve ?