1
vote
2answers
504 views
how to replace last occurence of a word in javascript?
for example:
var str="<br>hi<br>hi";
to replace the last(second) <br>,
to change into "<br>hihi"
…
1
vote
2answers
497 views
How to replace Dom element in place using javascript?
for an element in DOM,such as an "A" element,how to replace it with a "span" instead?
…
0
votes
1answer
52 views
howto insert an image from client side into an editor?
like an "insert" menu,by which to insert an image into the editor,
using javascript,I've no idea what's the solution at all,
should be in 2 steps:
1.let user choose image(th …
-3
votes
1answer
157 views
iframe location is null
Sometimes I use:
window.frames[framename].location.href
..only to find firebug reporting window.frames[framename].location is null, why would this be? …
0
votes
1answer
37 views
how to do try catch processing to cross site js file?
Like error caused by google adsense and so on.
Is there a method to ensure my own js keep running even if those foreign site js files have
error in them?
…
0
votes
1answer
234 views
how to detect multi-byte characters inputting end by javascript?
currently I listen on "Enter" key to start sending a message,
But for multi-byte characters,the "Enter" key is supposed to choose a certain character.
The problem is that I've no id …
0
votes
1answer
42 views
firebug net tab 0 request problem
I've step into a problem with firebug,
say under the "Net" tab,it always shows "0 request"
But I've already "enabled monitor for xxx"
Has any one met the same problem before …
0
votes
3answers
210 views
Is there a built-in javascript function to process time string?
To make time like "2009-05-02 00:00:00" to "2009-05-02"
I know I can achieve this by regular expression,
but would be better if there is a built-in function that can do this.
…
0
votes
1answer
435 views
swfobject not working in firefox 3?
My javascript code as follows:
BBS.SO = new SWFObject("/Client/Css/sound.swf", "mysound", "1", "1", "8", "#336699");
BBS.SO.write('swfholder');
it used to work,bu …
0
votes
2answers
72 views
scroll bar problem
how to move scroll bar by javascript ,
so that the top coordinate of visible area is y px from top coordinate of entire page?
…
1
vote
2answers
254 views
How to make YUI lighter and faster?
I've seen many sites based on YUI, but all are very slow-responding. Is there any good solution for this, to make those javascript files lighter and faster?
I've now already used a yuicompr …
0
votes
3answers
606 views
Permission denied to call method Location.toString
I'm using YUI,
and sometimes I'll see this "Permission denied to call method Location.toString" error,
It's reported in connection.js,
I didn't find any clue why this error …
0
votes
1answer
52 views
how to reuse YAHOO.util.Scroll instead of creating it each time?
Currently I'm using this way to do my job each time some event occurs:
var xy = YAHOO.util.Dom. getXY('body- wikicontainer' );
var attributes = {
scroll: { to: [0, xy[1] - 1 …
0
votes
3answers
129 views
how to get lastSibling by javascript?
There is a native "nextSibling" attribute,but how to get "lastSibling"?
…
2
votes
5answers
387 views
what’s “this” in javascript onclick?
<a onclick="javascript:func(this)" >here</a>
what does this mean in the script?
…
