Click here to Skip to main content
15,886,199 members
Home / Discussions / JavaScript
   

JavaScript

 
AnswerRe: project question Pin
J4amieC17-Jan-13 0:09
J4amieC17-Jan-13 0:09 
QuestionAbout mobile web debugger Pin
tidelgl13-Jan-13 19:18
tidelgl13-Jan-13 19:18 
QuestionRegular Expression Pin
AB777111-Jan-13 4:10
AB777111-Jan-13 4:10 
AnswerRe: Regular Expression Pin
vinodkumarnie18-Jan-13 21:44
vinodkumarnie18-Jan-13 21:44 
AnswerRe: Regular Expression Pin
AspDotNetDev24-Jan-13 14:09
protectorAspDotNetDev24-Jan-13 14:09 
QuestionHow to put clipboard data into TextBox Pin
Ravindra Bisen10-Jan-13 0:02
Ravindra Bisen10-Jan-13 0:02 
AnswerRe: How to put clipboard data into TextBox Pin
J4amieC10-Jan-13 2:39
J4amieC10-Jan-13 2:39 
AnswerRe: How to put clipboard data into TextBox Pin
Ravindra Bisen14-Jan-13 21:50
Ravindra Bisen14-Jan-13 21:50 
XML
<html>
<head>
<title>Java Script - Capita Learning : ClipBoard Data </title>

<script type="text/javascript" >

    function afterPaste(txt)
    {
      var T = window.clipboardData.getData('Text');
      document.getElementById('Txt_Data2').value = T;
      document.getElementById("Txt_Data3").value = T;
       var len = T.length;
       var n = T.indexOf(" ");
        document.getElementById("Txt_Data2").value = T.substring(0,n);
        T = T.substring(n+1,len);
        len = T.length;
    n = T.indexOf(" ");
        document.getElementById("Txt_Data3").value = T.substring(0,n);
    document.getElementById("Txt_Data4").value = T.substring(n+1,len);

    }



 </script>
</Head>
<body>
<p> On Paste event in java script
<p> <Input Type="Textbox" ID="Txt_Data" OnPaste="afterPaste(this.value)" >
<p> <Input Type="Textbox" ID="Txt_Data2" Name="Txt_Data2" >
<p> <Input Type="Textbox" ID="Txt_Data3" Name="Txt_Data3" >
<p> <Input Type="Textbox" ID="Txt_Data4" Name="Txt_Data4" >

</body>
</html>

GeneralRe: How to put clipboard data into TextBox Pin
itzzmearun29-Jan-13 20:18
itzzmearun29-Jan-13 20:18 
GeneralRe: How to put clipboard data into TextBox Pin
DaveAuld31-Jan-13 2:56
professionalDaveAuld31-Jan-13 2:56 
QuestionjQuery: live() function Pin
Phanindra2619-Jan-13 0:27
Phanindra2619-Jan-13 0:27 
AnswerRe: jQuery: live() function Pin
J4amieC9-Jan-13 0:39
J4amieC9-Jan-13 0:39 
QuestionGoogle+ login on my website Pin
marcbase8-Jan-13 11:16
marcbase8-Jan-13 11:16 
AnswerRe: Google+ login on my website Pin
Sandeep Mewara8-Jan-13 17:45
mveSandeep Mewara8-Jan-13 17:45 
QuestionQuestion Pin
nth926-Jan-13 6:25
nth926-Jan-13 6:25 
AnswerRe: Question Pin
Richard MacCutchan6-Jan-13 6:32
mveRichard MacCutchan6-Jan-13 6:32 
AnswerRe: Question Pin
Thomas Daniels6-Jan-13 7:13
mentorThomas Daniels6-Jan-13 7:13 
AnswerRe: Question Pin
J4amieC8-Jan-13 0:52
J4amieC8-Jan-13 0:52 
AnswerRe: Question Pin
Keith Barrow8-Jan-13 1:30
professionalKeith Barrow8-Jan-13 1:30 
QuestionSharepoint - Aggregate lists with JavaScript Pin
garfield1853-Jan-13 3:38
garfield1853-Jan-13 3:38 
QuestionBrowser Back Button Pin
tiger1463-Jan-13 1:58
tiger1463-Jan-13 1:58 
AnswerRe: Browser Back Button Pin
Keith Barrow3-Jan-13 3:03
professionalKeith Barrow3-Jan-13 3:03 
GeneralRe: Browser Back Button Pin
tiger1467-Jan-13 23:19
tiger1467-Jan-13 23:19 
GeneralRe: Browser Back Button Pin
Keith Barrow8-Jan-13 1:41
professionalKeith Barrow8-Jan-13 1:41 
AnswerRe: Browser Back Button Pin
Sandeep Mewara4-Jan-13 2:55
mveSandeep Mewara4-Jan-13 2:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.