Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Jquery or PHP .. Input box (type=File) ask lang mga sr..

ellirey

Apprentice
Advanced Member
Messages
72
Reaction score
0
Points
26
mga master papapano ung Input box na file type.. sample mag iinsert ako ng image.. kpag nag select na ako ng image mag kakaroon ng laman ung input box.. ang kasi papaano kpag marami akong image na gustong ilagay.. di ko kasi trip ung maraming inputbox ang nakalabas agad e.. papaano ung isa isa silang nalabas.. kunwari nag kalaman na ung isa may lalabas na input box na panibago :/ ..

" <input type="file" name="image" id="image" /> "
 
gamit ka jquery kung un gusto mo mag .append ka nlng lagyan mo ng condition ung input box mo if my laman .append(dito_molagayinput_box_mo)
 
TS di ako masyado mahusay sa programming pero ganito
<div id="image_div">
<input type="file" name="image" id="image" onchange="myFunc()" />
</div>
<script>
function myFunc(){
$("#image_div").append('<input type="file" name="image" id="image" onchange="myFunc()" />');
}
</script>
kaw na bahala pagandahin yung code, lagyan mo validation or etc..

or kung gusto mo multiple select sa isang input field
<input type="file" name="image" id="image" multiple="multiple" />
 
Back
Top Bottom