Tagged Questions
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
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
734 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 ...
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)
...
2
votes
1answer
596 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 ...
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
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
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
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
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
2answers
64 views
jQuery - Find custom 'divider' > Wrap each side accordingly
I've been looking for a plugin maybe that does something like what you can read from below.
If no one knows a plugin that could do that i'd like to get some info on how one would go about doing this.
...
0
votes
5answers
158 views
Trouble with jquery's append and prepend
I use the following code to check whether or not a certain div exists. And if it doesn't it adds it to the dom in the proper place.
if (!($("#col"+lastSlide).length))
{
...
0
votes
3answers
146 views
Problem with jQuery
if ( !this.labelContainer.append(label).length )
this.settings.errorPlacement
? this.settings.errorPlacement(label, $(element) )
: label.insertAfter(element);
(this code is from validate ...
0
votes
2answers
654 views
Append or prepend opening/closing tags with jQuery
I'm trying to wrap replies in a comment stream in a like this:
$('li.comment').next('li.replycomment').append('<ul class="thread">');
...
0
votes
3answers
846 views
Jquery odd/even question with prepend/append
I am successfully using jquery odd/even selectors to create a "tiger striping" on
a table. Then I added ability to add or deleted rows. However I have not been
able to get striping to work properly ...
0
votes
1answer
358 views
jQuery: How do I select text in a div and add tags around it?
I'm new to jQuery and I'm trying to do the following:
<div class="test">text</div>
I'm trying to write jQuery that will select the text inside the div and change it to:
<div ...
-1
votes
1answer
226 views
jquery - remove not working correctly. src doesnt work with google chrome . what should i do to remove the braces
<script type="text/javascript">
$(document).ready(function() {
// all jQuery code goes here
$("li").hover(function(){
$(this).prepend("<span>(</span>");
...