vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   <textarea> proprietary attribute (https://vborg.vbsupport.ru/showthread.php?t=192451)

veenuisthebest 10-02-2008 01:24 AM

<textarea> proprietary attribute
 
hii..

Here's a simple HTML code for textarea. I am using MaxChars attribute which is used further in some Javascript. But it is proprietary thus it gives 1 XHTML validation error.

HTML Code:

<textarea MaxChars="1000" name="description" id="description" rows="6" cols="50">Testing</textarea>

Note:- It works perfect. All I want to know is how to replace MaxChars with its equivalent that is XHTML valid.

veenuisthebest 10-03-2008 02:06 AM

anyone ??

MoT3rror 10-04-2008 09:36 PM

You can use the setattribute function to set it before your javascript code.

Code:

element.setAttribute('MaxChars', 1000);

veenuisthebest 10-04-2008 11:08 PM

thanks for replying but i'm not sure how to make it work !

see this is my actual textarea:-

HTML Code:

<!-- Text Area -->
<textarea MaxChars="1000" name="description" id="description" rows="6" cols="50" style="width:540px" onkeypress="if (this.value.length >= parseInt(this.attributes['MaxChars'].value)) return false;" onkeyup=" document.getElementById( this.id+'_charsCount' ).innerHTML = (parseInt(this.attributes['MaxChars'].value)-parseInt(this.value.length));"></textarea>
<!-- Text Area -->


As you can see all my JS is within onkeypress and onkeyup attribute of textarea. Now how do I use setattribute for MaxChars ?

Thank you

Dismounted 10-05-2008 04:27 AM

Can't you not use a maxchars attribute, but instead, but the number directly into the function for comparison? Or maybe even store it in a JS variable?

veenuisthebest 10-05-2008 05:18 AM

oh great ! Thank you so much, I directly used the number and it worked perfect.


All times are GMT. The time now is 12:01 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01279 seconds
  • Memory Usage 1,721KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (2)bbcode_html_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete