Need a simple JavaScript data export

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Don Lancaster

    Need a simple JavaScript data export


    What is the simplest way for JavaScript to output a dozen or more
    numeric values so they can be cut and pasted into another app?

    Neither the Status bar nor the Alert box permits cutting and pasting,
    while an INPUT box only permits one value at a time.


    --
    Many thanks,

    Don Lancaster
    Synergetics 3860 West First Street Box 809 Thatcher, AZ 85552
    voice: (928)428-4073 email: don@tinaja.com fax 847-574-1462

    Please visit my GURU's LAIR web site at http://www.tinaja.com

  • Dr John Stockton

    #2
    Re: Need a simple JavaScript data export

    JRS: In article <3F1B3105.28931 2DB@tinaja.com> , seen in
    news:comp.lang. javascript, Don Lancaster <don@tinaja.com >
    posted at Sun, 20 Jul 2003 17:17:09 :-[color=blue]
    >
    >What is the simplest way for JavaScript to output a dozen or more
    >numeric values so they can be cut and pasted into another app?
    >
    >Neither the Status bar nor the Alert box permits cutting and pasting,
    >while an INPUT box only permits one value at a time.[/color]

    INPUT with string of values; TEXTAREA with string of lines.

    Alternatively, write to a new Window, using a modified
    subset of PopCode shown by the first "Pop Up Code" button
    in <URL:http://www.merlyn.demo n.co.uk/js-date7.htm#OaE>.
    That might be better if the data might grow. Remember to
    use <tt> or <pre> or ... for easy selection.

    --
    © John Stockton, Surrey, UK. ?@merlyn.demon. co.uk Turnpike v4.00 IE 4 ©
    <URL:http://jibbering.com/faq/> Jim Ley's FAQ for news:comp.lang. javascript
    <URL:http://www.merlyn.demo n.co.uk/js-index.htm> JS maths, dates, sources.
    <URL:http://www.merlyn.demo n.co.uk/> TP/BP/Delphi/JS/&c., FAQ topics, links.

    Comment

    Working...