Javascript
- function OnLoadForm(){
- document.getElementById("description").placeholder = "Description for opportunity";
- this.LoadCSS("/WebResources/style.css");
- }
- function LoadCSS(path) {
- var head = document.getElementsByTagName('head')[0];
- var link = document.createElement('link');
- link.rel = 'stylesheet';
- link.type = 'text/css';
- link.href = path;
- link.media = 'all';
- head.appendChild(link);
- }
CSS
- ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
- color: Gray;
- }
- ::-moz-placeholder { /* Firefox 19+ */
- color: Gray;
- }
- :-ms-input-placeholder { /* IE 10+ */
- color: Gray;
- }
- :-moz-placeholder { /* Firefox 18- */
- color: Gray;
- }
沒有留言:
張貼留言