Possible Duplicate:
Can I change all my links to just //?
Is it possible to use just :// on all links during my development? For example, I would like to output
<select><option value="://my-page.html">Goto Page</option></select>
not
<select><option value="http://my-page.html">Goto Page</option></select>
or
<select><option value="https://my-page.html">Goto Page</option></select>
I have seen this somewhere before and was wondering if it is ok to do this as it would save a lot of time during development.
Also depending on what protocol the user comes in on, they would then be able to stay on that protocol throughout my website.