Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
7answers
467 views

How to prepend to a file (add at the top)

Imagine you have a file sink("example.txt") data.frame(a = runif(10), b = runif(10), c = runif(10)) sink() and would want to add some header information, like /* created on 31.3.2011 */ /* author ...
9
votes
3answers
133 views

Select numbers on a page with jQuery or Javascript

I'm just wondering if there's a way to locate numbers on a page with jQuery or plain Javascript. Here's what I want to do: Say "June 23" is on the page. What I want to do is be able to prepend and ...
8
votes
5answers
374 views

Is it possible to prepend data to an file without rewriting?

I deal with very large binary files ( several GB to multiple TB per file ). These files exist in a legacy format and upgrading requires writing a header to the FRONT of the file. I can create a new ...
8
votes
2answers
528 views

What is the idiomatic way to prepend to a vector in Clojure?

Prepending to a list is easy: user=> (conj '(:bar :baz) :foo) (:foo :bar :baz) Appending to a vector is easy: user=> (conj [:bar :baz] :foo) [:bar :baz :foo] How do I (idiomatically) ...
7
votes
2answers
732 views

Append and prepend text nodes to a HTML element using DOM?

Here is my HTML code <html> <body> <div>A sample block <div>and child block</div></div> </body> </html> How can I use DOM to ...
7
votes
7answers
867 views

Prepend a line to an existing file in Python

I need to add a single line to the first line of a text file and it looks like the only options available to me are more lines of code than I would expect from python. Something like this: f = ...
5
votes
3answers
371 views

How to prepend the past to a git repository?

I received some source code and decided to use git for it since my co-worker used the mkdir $VERSION etc. approach. While the past of the code currently seems unimportant, I'd still like to put it ...
4
votes
1answer
3k views

JQUERY Prepending an LI to an UL with Animation

I have a UL and I'm working to dynamically add a new LI to the top of the UL with some animation. I have the following so far which works ok: $("#container").prepend('<li ...
3
votes
2answers
54 views

Find text in a string and prependTo somewhere else

I am trying to find some text RegEx /\w*http:[/][/]bit.ly[/]\w*/ig that will find this string and pull it out, moving it to the <span> tag, or at the end of the <p> tag? <p ...
3
votes
3answers
122 views

adding space in an output file with out having to read the entire thing first

Question: How do you write data to an already existing file at the beginning of the file with out writing over what's already there and with out reading the entire file into memory? (e.g. prepend) ...
3
votes
1answer
481 views

jquery prepend to textarea text()

I have a text area. I can set the text of it with $("#mytextarea").text("foo") I can prepend to the text area like this: $("#mytextarea").prepend("foo") But I cannot prepend to the jquery ...
3
votes
3answers
713 views

jQuery prepend to all hyperlink elements that link to PDF files

I would like to prepend "Download a PDF of " to any hyperlinks, linking to PDF files. Currently I'm able to prepend that exact text, but it prepends it to the hyperlink text. I would like it to reside ...
3
votes
2answers
2k views

Jquery prepend click handler

If you know a better way to do this then please let me know. Right I have a page which will contain lots of buttons, charts and tables. I have read about stopping event propogation and that's what ...
2
votes
1answer
39 views

One way of prepending html with jquery works but why the other way doesn't?

This way of prepending does work for me: <script type="text/javascript" charset="utf-8"> $(document).ready(function() { $("#learn-more-button").click(function() { ...
2
votes
4answers
95 views

Prepend a single line to file with Ruby

I'd like to add a single line to the top a of file with Ruby like this: # initial file contents something else # file contents after prepending "hello" on its own line hello something else The ...
2
votes
2answers
128 views

What's the idiomatic syntax for prepending to a short python list?

list.append() is the obvious choice for adding to the end of a list. Here's a reasonable explanation for the missing list.prepend(). Assuming my list is short and performance concerns are ...
2
votes
4answers
54 views

get attribute value of a newly prepended element

I have the following html: <ul><li rel="3">text<li><li rel="2">text<li><li rel="1">text<li></ul> then I prepend a new li element: $("ul ...
2
votes
3answers
45 views

Removing text that was appended previously

I have a highlighting function using JQuery, that changes the css for the clicked <li> element in a menu. The function also prepends a pair of left brackets << to serve as pseudo arrows. ...
2
votes
2answers
69 views

Prepending Data to a File

There's no way in any operating system I'm aware of for a program to prepend data to a file efficiently. And yet, this doesn't seem difficult -- the file system can add another extent to a file ...
2
votes
1answer
471 views

How to insert element as a first child?

I want to add a div as a first element using jquery on each click of a button <div id='parent-div'> // want to insert always as a first elment here ... <div class='child-div'>some ...
2
votes
2answers
195 views

jQuery: using delay() and prepend()

In the following code the last line doesn't work in my way: $('button.goal').click(function () { $('div.scorer_away').animate({ width: 'hide', opacy: 'hide' }, 'slow') .delay(2500) ...
2
votes
4answers
723 views

Problem using the prependTo() in jQuery

I am having a problem trying to use the prependTo() function in jQuery... for some reason I can't get this to work $(" <div id="note178" class="note"> <div class="delete"><a ...
2
votes
1answer
595 views

Prepending unclosed tags in jquery

Due to some limitations on the place files are being placed I would like to prepend and append page structure just after the opening body tag and just before the closing body tag. <script ...
2
votes
3answers
682 views

Problems with .prepend method in jQuery

I have a function that prepends a li tag to a parent div just fine...however, after the prepend, i want to act upon this prepended list item by changing css properties when hovered on but the jQuery ...
1
vote
3answers
114 views

Prepend std::string

What is the most efficient way to prepend std::string? Is it worth writing out an entire function to do so, or would it take only 1 - 2 lines? I'm not seeing anything related to an ...
1
vote
2answers
61 views

JQuery prependTo and appendTo unresulting

The following code is supposed to add some code inside each element .scrollable. Each element should have the first lines inside .scrollable before the already existing content and the second after ...
1
vote
2answers
39 views

jquery form labels? Do they not exist?

I'm creating a dynamic input element and I want to set the label for it... I've tried a number of things... //get the value from the input var getValue = $('#newField').val(); //create new input ...
1
vote
4answers
128 views

C# prepending bytes to the beginning of a file?

What is the fastest and most efficient way to prepend bytes at the beginning of a file? Basically, I want to open a file and then add a number of bytes to it. I thought of using a loop, but given that ...
1
vote
1answer
100 views

Can't process prepended <img> with Pixastic

My question is rather basic, but I can't find it out. I have a quite big library of images to display in my website, so I've written a jQuery script to scan the folder, gather sources of images and ...
1
vote
1answer
28 views

Is there a file system with a low level prepend operation?

At the lowest levels most OS file operations include open, close, read, write, delete and seek and append operation, yet there is no prepend operation. The question came up because a colleague of ...
1
vote
1answer
125 views

jquery mobile appending/prepending text

I would like to append some code to a page using jquer/jquery mobile, but I am tripping up on some of the page() and pageshow and refresh methods. Here is my code. you can cut, paste and run as is. ...
1
vote
2answers
288 views

jQuery append to bottom of list

Can someone lend me a hand I have this unordered list <ul id="nav"> <li><a href="whatwedo.aspx">WHAT WE DO</a> <ul> <li><a ...
1
vote
2answers
159 views

Parent/Append/Prepend arrangement

On a doubleclick, a new clone of the clicked element is created. It's imperative that this new clone is prepended to the parent wrapper. However, this becomes problematic as there is an element above ...
1
vote
4answers
484 views

Dynamic String Format C#

In C#, Windows Form, how would I accomplish this: 07:55 Header Text: This is the data<br/>07:55 Header Text: This is the data<br/>07:55 Header Text: This is the data<br/> ...
1
vote
1answer
116 views

jQuery prepend() within a for loop after having picked up an array from a textarea

Hi and thanks for reading. I am trying to permit users to paste text into a textarea field and then work with what they pasted. The application is limited in scope but users will be pasting the ...
1
vote
2answers
293 views

issues with jquery prepend

i'm at a loss for why this isn't working.. this works: $(this).prepend("<div data-role='header'><h1>Hi</h1></div>"); however when i do this my entire page goes blank ...
1
vote
1answer
126 views

prepend a list to a matrix in matlab

i wanted to ask this: If i have this matrix: magnetT=NaN(Maxstep,2); and want to prepend to it the "{0 1}" how can i write it? Also,if i have this in mathematica in a loop: magnetT[[i]] = {T, ...
1
vote
1answer
901 views

Need help with: jquery prepend doctype to html

Here's my situation: I am editing an application's CSS style sheet. I can ONLY edit the CSS style sheet (unless I can creatively glom onto another file using the CSS, or possibly add a small jQuery ...
1
vote
3answers
192 views

Wrap a <ul> in another <ul> with jQuery

I have an unordered list that I would like to wrap inside another unordered list in jQuery, using the following code: $('ul.innerlist').prepend('<ul><li>'); ...
1
vote
2answers
97 views

Keeps prepending several images

I'm working on SharePoint with jQuery and each time I use the prepend() function in combination with the each() function in order to display a image before each cell in a list, I get several of those ...
1
vote
3answers
99 views

jQuery prepend() Bug?

I'm using prepend() and the result seems to be buggy. $('#element').prepend('<div><a href="http://google.com"><a href="http://test.com">Test.com</a> - A ...
1
vote
4answers
1k views

JQuery - How to add a single html tag to some html?

I want to insert just a single <span> before the text below (right before LINK): <li><a href="">LINK</a></li> So, the above becomes <li><a ...
1
vote
4answers
731 views

Unix: prepending a file without a dummy-file?

I do not want: $ cat file > dummy; $ cat header dummy > file I want similar to the command below but to the beginning, not to the end: $ cat header >> file
1
vote
7answers
2k views

jQuery - how to undo prepend

I am using the prepend() function to diplay an image when a div is hoevered over. How do I remove the image - i.e. what is the opposite of prepend() Here is the code: $("#hover-div").hover( ...
1
vote
3answers
202 views

How do I prepend information to STDERR when a method generates stderr?

Is there some way I can catch when a method generates a write to STDERR? I'm trying to pre-pend some information with each STDERR write. let's say our method is: parser.thatGeneratesSTDERR(); ...
0
votes
1answer
26 views

Jquery: Prepend href to a dynamic href

I have a dynamic href that does not have a class or id and I need to accomplish 2 things. First I need to be able to identify that the href is qualify. Something along the lines of if ...
0
votes
4answers
40 views

add a number for each div

Hi I'd like some advice with what I'm trying to achieve. I currently have this: <div class="thumbnail"> <img src="thumbnail_1.jpg" /> </div> For each .thumbnail I would like to ...
0
votes
3answers
36 views

JQuery Hiding Prepend Elements

I can't figure out how to hide prepend span tags. I have the following JQuery code that prepends span tags as error messages in a form: $('.mcEmail').each(function() { var mcEmailCheck = ...
0
votes
3answers
113 views

how to concatenate a char to a char* in C?

How can I prepend char c to char* myChar? I have c has a value of "A", and myChar has a value of "LL". How can I prepend c to myChar to make "ALL"?
0
votes
1answer
48 views

jquery display img on different div depending on where it was clicked

To better explain what I need I uploaded an example here. I have 3 divs, and clicking on either one of them will have the same image menu appear on the right. What I have now is: click on the first ...

1 2