Search:
Type: Posts; User: that_web_guy
Search:
Search took 0.01 seconds.
-
So i've been trying to use more css3 properties for a few reasons(less images = faster load time, ease of making changes, etc).
Whats the best way to go about css3 fallback?
So I deal with a...
-
You should link to it the same way you are linking to it on your index.php page.
<link rel="stylesheet" href="../css/styles.css" />
or
<link rel="stylesheet"...
-
seems like its working fine to me.
-
Wrap the select in a form. Give your input a name and a submit button.
index.html file
<form method="POST" action="second.php">
<select onchange="ShowTB(this,'fred');" >
<option...
-
You can do it easily with JQuery.
<!DOCTYPE>
<html>
<head>
<script type="text/javascript" src="js/jquery.js"></script>
<script type='text/javascript'>
$(document).ready(function(){
...
|
|