Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Javascript > document.getElementById('content').focus();

Reply
Thread Tools

document.getElementById('content').focus();

 
 
agflem@yahoo.ca
Guest
Posts: n/a
 
      01-24-2005
Why won't this work in Firefox:
document.getElementById('content').focus();
Is there something else to use?

 
Reply With Quote
 
 
 
 
RobB
Guest
Posts: n/a
 
      01-25-2005
agf...@yahoo.ca wrote:
> Why won't this work in Firefox:
> document.getElementById('content').focus();
> Is there something else to use?


What's the context in which you're using it? Is 'content' an id rather
than a name? Is this a form element?

 
Reply With Quote
 
 
 
 
RobG
Guest
Posts: n/a
 
      01-25-2005
wrote:
> Why won't this work in Firefox:
> document.getElementById('content').focus();
> Is there something else to use?


Advice above is good. If you are going to compare date strings, you
must compose them yourself.

var dtToday = Date()

will create a new date object with a date/time of the instant it was
created according to the settings of the user's local machine. This is
likely not accurate or reliable, so you must validate on the server.
Simply writing dtToday will create some string according to the
settings of the local machine, which could be anything.

Supposing txtDDate is the string "01/24/2005", then the equivalent date
string constructed from dtToday will be given by the script below.
Note that date & month less than "10" need a leading zero and that
getFullYear() is not supported on all browsers, so you may need to use
getYear and deal with it's eccentricities:


<script type="text/javascript">
function checkZero(a){
return (a < 10)? "0" + a : a;
}
function todayDate() {
var dtToday = new Date();
var dtTodayString = checkZero(+dtToday.getMonth()+1)
+ '/' + checkZero(dtToday.getDate())
+ '/' + dtToday.getFullYear();
alert(dtTodayString);
}
</script>
<button onclick="todayDate()">Click me</button>

In regard to date formats, if users' aren't going to see them (or
perhaps even if they are) the accepted international standard is
ISO8601. Your date above would become 2005-01-24 or 2005/01/24. Read
stuff on dates here:

<URL:http://www.merlyn.demon.co.uk/js-dates.htm>

The format mm/dd/yyyy is peculiar to the US and is likely to be
misinterpreted elsewhere in the world. ISO8601 dates should not be.

I appologise for baddly formatted code, but Google Groups insists on
removing all leading spaces, so there's not much I can do.

 
Reply With Quote
 
Dr John Stockton
Guest
Posts: n/a
 
      01-25-2005
JRS: In article <. com>,
dated Mon, 24 Jan 2005 17:45:19, seen in news:comp.lang.javascript, RobG
<> posted :
> wrote:
>> Why won't this work in Firefox:
>> document.getElementById('content').focus();
>> Is there something else to use?

>
>Advice above is good.


It does not look like advice; and your response appears unrelated.

> If you are going to compare date strings, you
>must compose them yourself.


That is not a requirement. It is, for example, perfectly correct to
compare for equality date strings in any fixed format; and to compare
for order date strings in an ISO 8601 format. User input validation can
easily ensure comparability.

>var dtToday = Date()
>
>will create a new date object with a date/time of the instant it was
>created according to the settings of the user's local machine.


For me, it creates a string, according to typeof .

> This is
>likely not accurate or reliable, so you must validate on the server.
>Simply writing dtToday will create some string according to the
>settings of the local machine, which could be anything.


In my system, it is unambiguous; its value may be incorrect.

>Supposing txtDDate is the string "01/24/2005", then the equivalent date
>string constructed from dtToday will be given by the script below.
>Note that date & month less than "10" need a leading zero and that
>getFullYear() is not supported on all browsers, so you may need to use
>getYear and deal with it's eccentricities:


Aha - a greengrocer !

getYear()%100 is reliable, so those who expect to lose interest before
AD2100 can often work with 2 year digits. I expect you have seen how
getFullYear can be emulated using getTime and any getYear such that
getYear()%100 is reliable.


>function checkZero(a){
>return (a < 10)? "0" + a : a;
>}


Not a well-named function. Note that it assumes a non-negative integer
input, which is reasonable in this case. Also that it sometimes returns
a string and sometimes a number (assuming input is number); that is
usually harmless and harmless in this case - but if the intended format
were YYYYMMDD[*] then the results would be quite different for
day/month<10, as addition can occur.
[*] For YYYYMMDD, (getFullYear()*100+getMonth()+1)*100+getDate() is
better.


>function todayDate() {
>var dtToday = new Date();
>var dtTodayString = checkZero(+dtToday.getMonth()+1)


First + is superfluous.

>+ '/' + checkZero(dtToday.getDate())
>+ '/' + dtToday.getFullYear();
>alert(dtTodayString);
>}



>I appologise for baddly formatted code, but Google Groups insists on
>removing all leading spaces, so there's not much I can do.


Don't use it, then. Example code NEEDS to be properly formatted. Find
a competently-designed news system. Even Developersdex is, IIRC,
better.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
 
Reply With Quote
 
agflem@yahoo.ca
Guest
Posts: n/a
 
      01-26-2005
No, not a form element...rather a DIV

<div id="" name="" contenteditable></div>

I need to be able to set focus on in order to paste into it...
IE is fine ... FF ... not so much.

 
Reply With Quote
 
Randy Webb
Guest
Posts: n/a
 
      01-26-2005
wrote:
> No, not a form element...rather a DIV
>
> <div id="" name="" contenteditable></div>
>
> I need to be able to set focus on in order to paste into it...
> IE is fine ... FF ... not so much.
>


Thats because FF does not support "contenteditable" and as such does not
support the concept of "focus" on it.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq
 
Reply With Quote
 
agflem@yahoo.ca
Guest
Posts: n/a
 
      01-27-2005
Any suggestions on how to get something like that to work in FF too?

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off




Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57