For coping to the clipboard I'm using Zero Clipboard, recommended by this answer.

The code works perfectly fine when used in this form.

<div id="d_clip_button" style="background: #FFFFCC;">
    Click to copy
</div>
<script language="JavaScript" type="text/javascript">
        var clip = new ZeroClipboard.Client();
                        clip.setText( '<?php echo "http://example.com/" . $var; ?>' );
                        clip.glue( 'd_clip_button' );
</script>

A problem occurs when this above code is called dynamically like this:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>

<form action="generar.php" method="post">
Input: <input type="text" id="longUrl" name="longUrl" value="" /><br />
<input type="button" value="Acortar!" onclick="submitme()" />
<div id="resultado"></div>
</form>



<script type="text/javascript" charset="utf-8">

    function submitme(){
    var tosend=document.getElementById("longUrl").value;
    $.ajax({
            type: 'POST',
            url: 'generar.php',
            data: 'longUrl='+tosend,
            success: function(msg){
                if(msg){
                    document.getElementById("resultado").innerHTML=msg;
                }
                else{
                    return;
                }
            }
        });
    }

</script>

The "Click to copy" appears but the resource is not called correctly since it's "not flash".

Any ideas on how to make this work / what is the problem?

Thanks in advance!! Please ask for any clarification needed!


Could it have (don't think so) anything to do with the whole thing being nested on a div?

link|improve this question

how are you going to use zeroclipboard in the second example? – www0z0k Jan 30 '11 at 11:37
@www0z0k sorry for the delay, exactly the same way it is posted. Since the code is in generar.php but it is called and displayed by the AJAX function. See demo – Trufa Jan 30 '11 at 15:12
where should i click to copy? – www0z0k Jan 30 '11 at 16:20
@www0z0k hehe sorry! where ti says "Clic para copiar." – Trufa Jan 30 '11 at 16:43
@www0z0k actually if you press enter (on the text box) and don't press the button it works just fine! – Trufa Jan 30 '11 at 16:47
show 19 more comments
feedback

1 Answer

up vote 2 down vote accepted

innerHTML doesn't execute JavaScript that gets passed through in the Ajax call.

Use jQuery's .html().

 $("#resultado").html(msg);
link|improve this answer
chat.stackoverflow.com/transcript/17 here are some chat transcripts. Thanks @Pekka – Trufa Jan 31 '11 at 2:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.