Hi, Can somebody please tell me a use of INPUT Forms, without the use of any additional Javascript? I need 2 uses very quickly, but i cannot figure out what they would be used for if no JS can be used along with it!! Please help i would be very very greatful!!
About anything you want where user input is required, as long as you back it up with a server side script (for example PHP).
Could we display different data based on user selection in a drop-down-box? For example if option one in selected in the box then display this, if option two is selected in drop down box then display this and so on? Is this possible via HTML only, for example without any scripting at all?
Nope. Listen to yourself: If, then, if, then.. that's scripting of some sort-- and if you want it to happen just from selecting the dropdowns and NOT waiting until after Submit is hit, then you'll need AJAX or something similar that can run on the user's browser in "real time". If it's supposed to do stuff after the selections are made AND Submit is hit, then any backend script can deal with it-- Perl, Python, PHP, blah. HTML/CSS alone? No. Possibly in the far far future of CSS3 and regular expressions, but even then... plus, that's still working draft so we're in for a long wait. For your original question, the "without any additional Javascript" part... you don't actually need any JS, just a script running on the server that can deal with the submit-action of the form.
Bleh, it'd be full of "Earn money easy on teh intarwebz!!" and spamz : ) CSS3 has been broken up into modules, so they can be approved (become a recommendation) seperately... but it's huge, seriously, huge. There's tons of people working on it and it's just slow going. Besides, submitting a form or changing the HTML is a behaviour, and really does belong to scripting.