-
Search
Categories
-
Linux, PHP, LAMP, The Web in a blog- Android – how to develop directly on a phone
- Android drawable default icons – they are free to use
- Android how to read and write files
- Uncompress on the fly when copying a file from a remove location with scp
- Setting up an encrypted volume on an external hard drive on CentOS
- Linux bash – tar tricks
- Implement Selenium tests
- Using a downloaded package without IDE in Java
- CSS selectors optimisation
- Ubuntu Linux on Acer Aspire AO751h
Tag Cloud
alarm array backup begin button character commercial constants coppermine CSV DVD eclipse ecommerce email email server expect firefox font foreach formatting fstab ftp GMail gnome keyboard Lucene marketing memcached mount plugin profiling protect regexp scp Selenium SEO sftp split svn tar utf utf8 Vbulletin Virtual Server Web Dev Security
Category Archives: HTML / CSS
Get And Set The Selected Value In a Combobox
Just use the selectedIndex property.
Posted in HTML / CSS, Javascript
Leave a comment
Conditional Form Submit (With or Without AJAX)
Without AJAX: <script> function validateForm() { if (ok) { // everything’s OK, we can submit the form return true; } else { return false; } } </script> <form onSubmit=”return validateForm()”> <input type=”submit” value=”Submit”> </form> /////////////////////////////////////////////////////// With AJAX: If submitting the … Continue reading
Posted in AJAX, HTML / CSS, Javascript
Leave a comment
Howto Dynamically Insert Javascript And CSS
Howto_Dynamically_Insert_Javascript_And_CSS.html
Posted in HTML / CSS, Javascript
Leave a comment
Javascript Get The Checked Values For Radio Buttons and Checkbox
Radio button: HTML: <input type=”radio” id=”myradio” name=”myradio”> Javascript: var myradio = document.getElementsByName(‘myradio’); var choice = getRadioCheckedValue(myradio); // Given a radio button obj, return the selected value function getRadioCheckedValue(radioObj) { if(!radioObj) return “”; var radioLength = radioObj.length; if(radioLength == undefined) if(radioObj.checked) … Continue reading
Posted in HTML / CSS, Javascript
Leave a comment
