select all button
Ik heb een vraag.
Ik ben opzoek naar een functie waar bij je uit een text veld via een button de tekst kunt selecteren>
En dan vervolgende plaken in een aplicatie.
Ik hoop dat jullie mij begrijpen en mij op weg kunt helpen
M.v.g.
Dit is wel wat ik bedoel .
Maar nu gebreurt er het volgende als ik via de link ge copieren naar het klembord neemt hij alles niet goed mee .
de volgende krijg ik te zien <iframe terwijl < de volgende moet zijn <
wat kan ik veranderen zodat het wel goed gaat
M.v.g.
http://davidwalsh.name/clipboard
Die maakt ook gebruik van ZeroClipboard maar vind ik persoonlijker lekker werken.
Ik gebruik dit script van David Walsh Die maakt ook gebruik van ZeroClipboard maar vind ik persoonlijker lekker werken.
Gewijzigd op 13/05/2012 18:28:05 door Joey Drieling
Dit is wel wat ik bedoel ,
Maar nu heb ik nog een vraag ik moet deze functie twee tot vier gebruiken op een pagina .
Hoe kan ik dit toepassen want kon het niet vinden op die website.
M.v.g.
Voorbeeld.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var clip1 = new ZeroClipboard.Client();
clip1.addEventListener('mousedown',function() {
clip1.setText(document.getElementById('box-content-1').value);
});
clip1.glue('button-1');
var clip2 = new ZeroClipboard.Client();
clip2.addEventListener('mousedown',function() {
clip2.setText(document.getElementById('box-content-2').value);
});
clip2.glue('button-2');
clip1.addEventListener('mousedown',function() {
clip1.setText(document.getElementById('box-content-1').value);
});
clip1.glue('button-1');
var clip2 = new ZeroClipboard.Client();
clip2.addEventListener('mousedown',function() {
clip2.setText(document.getElementById('box-content-2').value);
});
clip2.glue('button-2');
Kijk ook ff op de wiki http://code.google.com/p/zeroclipboard/wiki/Instructions
Gewijzigd op 14/05/2012 23:49:50 door Joey Drieling
Het volgende heb ik gedaan maar nu werkt alleen het twee de script en de eerste niet
dit is de code
Code (php)
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
58
59
60
61
62
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
58
59
60
61
62
<script language="JavaScript">
var clip = null;
function $(id) { return document.getElementById(id); }
function init() {
clip = new ZeroClipboard.Client();
clip.setHandCursor( true );
clip.addEventListener('load', function (client) {
debugstr("Flash movie loaded and ready.");
});
clip.addEventListener('mouseOver', function (client) {
// update the text on mouse over
clip.setText( $('fe_text').value );
});
clip.addEventListener('complete', function (client, text) {
debugstr("Copied text to clipboard: " + text );
});
clip.glue( 'd_clip_button', 'd_clip_container' );
}
function debugstr(msg) {
var p = document.createElement('p');
p.innerHTML = msg;
$('d_debug').appendChild(p);
}
</script>
<script language="JavaScript">
var clip1 = null;
function $(id) { return document.getElementById(id); }
function init() {
clip1 = new ZeroClipboard.Client();
clip1.setHandCursor( true );
clip1.addEventListener('load', function (client) {
debugstr("Flash movie loaded and ready.");
});
clip1.addEventListener('mouseOver', function (client) {
// update the text on mouse over
clip1.setText( $('fe_text1').value );
});
clip1.addEventListener('complete', function (client, text) {
debugstr("Copied text to clipboard: " + text );
});
clip1.glue( 'd_clip_button1', 'd_clip_container1' );
}
function debugstr(msg) {
var p = document.createElement('p');
p.innerHTML = msg;
$('d_debug1').appendChild(p);
}
</script>
var clip = null;
function $(id) { return document.getElementById(id); }
function init() {
clip = new ZeroClipboard.Client();
clip.setHandCursor( true );
clip.addEventListener('load', function (client) {
debugstr("Flash movie loaded and ready.");
});
clip.addEventListener('mouseOver', function (client) {
// update the text on mouse over
clip.setText( $('fe_text').value );
});
clip.addEventListener('complete', function (client, text) {
debugstr("Copied text to clipboard: " + text );
});
clip.glue( 'd_clip_button', 'd_clip_container' );
}
function debugstr(msg) {
var p = document.createElement('p');
p.innerHTML = msg;
$('d_debug').appendChild(p);
}
</script>
<script language="JavaScript">
var clip1 = null;
function $(id) { return document.getElementById(id); }
function init() {
clip1 = new ZeroClipboard.Client();
clip1.setHandCursor( true );
clip1.addEventListener('load', function (client) {
debugstr("Flash movie loaded and ready.");
});
clip1.addEventListener('mouseOver', function (client) {
// update the text on mouse over
clip1.setText( $('fe_text1').value );
});
clip1.addEventListener('complete', function (client, text) {
debugstr("Copied text to clipboard: " + text );
});
clip1.glue( 'd_clip_button1', 'd_clip_container1' );
}
function debugstr(msg) {
var p = document.createElement('p');
p.innerHTML = msg;
$('d_debug1').appendChild(p);
}
</script>
Wat moet ik nog meer doen
M.v.g.
Dit zou moeten werken zie ook voor voorbeeld: http://www.funbun.nl/clipboard
Code (php)
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
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
<script language="JavaScript">
function $(id) { return document.getElementById(id); }
function init() {
clip1 = new ZeroClipboard.Client();
clip1.setHandCursor( true );
clip1.addEventListener('load', function (client) {
debugstr("Flash movie loaded and ready.");
});
clip1.addEventListener('mouseOver', function (client) {
// update the text on mouse over
clip1.setText( $('fe_text').value );
});
clip1.addEventListener('complete', function (client, text) {
debugstr("Copied text to clipboard: " + text );
});
clip1.glue( 'd_clip_button', 'd_clip_container' );
clip2 = new ZeroClipboard.Client();
clip2.setHandCursor( true );
clip2.addEventListener('load', function (client) {
debugstr("Flash movie loaded and ready.");
});
clip2.addEventListener('mouseOver', function (client) {
// update the text on mouse over
clip2.setText( $('fe_text1').value );
});
clip2.addEventListener('complete', function (client, text) {
debugstr("Copied text to clipboard: " + text );
});
clip2.glue( 'd_clip_button1', 'd_clip_container1' );
}
function debugstr(msg) {
var p = document.createElement('p');
p.innerHTML = msg;
$('d_debug').appendChild(p);
}
</script>
function $(id) { return document.getElementById(id); }
function init() {
clip1 = new ZeroClipboard.Client();
clip1.setHandCursor( true );
clip1.addEventListener('load', function (client) {
debugstr("Flash movie loaded and ready.");
});
clip1.addEventListener('mouseOver', function (client) {
// update the text on mouse over
clip1.setText( $('fe_text').value );
});
clip1.addEventListener('complete', function (client, text) {
debugstr("Copied text to clipboard: " + text );
});
clip1.glue( 'd_clip_button', 'd_clip_container' );
clip2 = new ZeroClipboard.Client();
clip2.setHandCursor( true );
clip2.addEventListener('load', function (client) {
debugstr("Flash movie loaded and ready.");
});
clip2.addEventListener('mouseOver', function (client) {
// update the text on mouse over
clip2.setText( $('fe_text1').value );
});
clip2.addEventListener('complete', function (client, text) {
debugstr("Copied text to clipboard: " + text );
});
clip2.glue( 'd_clip_button1', 'd_clip_container1' );
}
function debugstr(msg) {
var p = document.createElement('p');
p.innerHTML = msg;
$('d_debug').appendChild(p);
}
</script>
Gewijzigd op 15/05/2012 20:35:21 door Joey Drieling
Heel erg bedankt het werkt perfect?
M.v.g.
Graag gedaan Andre en succes verder.