gogodr I post too much
Reputation: 125
Joined: 19 Dec 2006 Posts: 2041
|
Posted: Thu Jun 10, 2010 2:59 pm Post subject: actually I'm trying to make this styling thing for gaia |
|
|
but x_x I'm kind of stuck trying to find out the variables I need...
this is what I have
| Code: |
<div id="qr_container">
<form>
<div id="qr_error"></div>
<h2>Quick Reply</h2>
<a id="qr_close" href="#"><span> </span></a>
<textarea id="qr_text" tabindex="1"></textarea>
<div id="qr_captcha">
<p id="enter_words">Enter <em>both</em> words below, separated by a <em>space</em>:</p>
<img src="/images/1x1.gif" id="captcha_image"/>
<p id="cant_read">Can't read the text? <a href="#" id="qr_new_captcha">Click here</a></p>
<input type="text" name="qr_input" id="captcha_response" size="40" tabindex="2"/>
</div>
<a href="#" id="qr_submit" class="info_button" tabindex="3"><span class="button_cap"> </span><span class="button_text">Submit</span></a>
</form>
</div> </div> |
the cef one was easier after finding
| Code: | function checkForm() {
formErrors = false;
if (document.post.message.value.length < 2) {
formErrors = "You must enter a message when posting.";
}
if (formErrors) {
alert(formErrors);
return false;
} else {
bbstyle(-1);
//formObj.preview.disabled = true;
//formObj.submit.disabled = true;
return true;
}
}
|
|
|