0
votes
2answers
68 views

Jquery Image wrap to <img>

I want convert simple text link in content with extension (jpg|png|gif) wrap to image tags http://host.com/image.png to <img src="http://host.com/image.png" /> What's the best way do it with ...
4
votes
3answers
76 views

How to wrap text inside new div?

My HTML: <div class="mainDiv"> <p>This is a paragraph</p> <div class="innerDiv">This is a div</div> This is what I want to wrap </div> What I want: ...
1
vote
1answer
47 views

How can I add a span element to an img, then wrap everything with a link?

In my html source, I only have : <img src="..."/> Now I want to add a span with JQuery in order to get <img src="..."/><span>My span</span>, and after this use .wrap() to ...
0
votes
1answer
61 views

jQuery/Check if image is wrapped in a list item [duplicate]

I'm using javascript and jQuery to make a light box, and I have a simple function that wraps each image, inside a container div, with a list item, but I want to check to see if they're already wrapped ...
-1
votes
3answers
110 views

jquery/javascript unwrap all [closed]

i have this: <div>All <span class="hl">text</span> should <span class="hl">be <span class="hl">unwrapped</span> <span>but not me</span> ...
3
votes
2answers
60 views

.wrap(); breaking prevent.Default();

I've written a custom form validation script, but for some reason, wrapping input[type=text] elements in <div class="inputWrapper" /> stops me from preventing input[type=submit]'s default ...
-2
votes
3answers
115 views

Wrap string in brackets but also having random value in string:

How can I wrap a string in parantheses that has another random value in it? Look at this for explaining better to understand: var str = "ss(X)+ss(X)" INTO: "(ss(X))+(ss(X))" NOTE: X can be any ...
0
votes
0answers
61 views

let text fit container height

Is it possible (CSS, JS, whatever), to let a text flow in a way that it fits the height of a fixed or percentage height container and the container shrinks in width, so that it wraps the text exactly? ...
2
votes
2answers
111 views

CSS - Wrap text along angle

I'm trying to get text to wrap along an angle. This illustrates what I'm trying to do better than I can describe it: I found a solution here but it uses a heck of a lot of empty floated divs to ...
0
votes
3answers
367 views

Wrap Text In JavaScript

I am new to JavaScript And JQuery. I am having a variable named as ‘str’ in JavaScript and it contains very long text say something like “A quick brown fox jumps over a lazy dog”. I want to wrap it ...
3
votes
1answer
68 views

Search for text wrap with html

I have the following HTML-code: <div id="Test"> My selected Link <a href="link1.html">My Link 1</a> <a href="link2.html">My Link 2</a> </div> I need to ...
0
votes
2answers
121 views

Unwrap safely jQuery instances to get the wrapped DOM element

Wrapping twice an HTML element with jQuery is a safe operation, since it returns an instance of the same DOM element: var $a = $('#foo'); var $b = $($a); alert($b.get(0) === $a.get(0)); // true It ...
2
votes
4answers
385 views

jQuery remove span inside an element ? .unwrap() method?

This code adds and removes an "active" class to a menu (.active). It also adds a span class to the active link : < span class="filet_menu"> It works like a charm. But how can i remove this span ...
1
vote
1answer
153 views

Javascript jScrollPane wrap content on server side

Is it possible to preprare markup for JavaScript library jScrollPane on server side? When library is initializing scrollbars on elements, it wraps content with and adds couple of elements for ...
1
vote
2answers
62 views

Jquery Complex wrap around uncontained group of items

I'm trying to take group of headers and lists, and contain them individually so I can style them. ie: <h2>Title 1</h2> <ul> <li>Item 1</li> <li>Item ...
1
vote
1answer
111 views

Align/Wrap images around div

What I'm trying to achieve is a page with a div centered in the middle of the screen (720x360). This is done with jQuery using $(window).height() and $(window).width() and works perfectly. The ...
0
votes
1answer
180 views

Why is JavaScript wrapInner throwing an error?

I have a Firefox addon with the following code: $("table > tbody > tr > td[width='600']").wrapInner("<div id='content_cont' />"); That line of code executes, but all the lines after ...
3
votes
3answers
454 views

Can I $.wrap() around a collection of elements in an array?

Let's say I have a collection of 'items' like so: <p class="item">Item 1</p> <p class="item">Item 2</p> <p class="item group">Item 3</p> <p class="item ...
0
votes
1answer
66 views

Adding attributes to custom HTML key [img]/path/to/image.jpg[/img]

I have an online text editor, very well made however it does not currently support images. I have this at the moment and don't feel it to be a very good way of doing it. var = txt = "some text here ...
0
votes
3answers
1k views

HTML Table Wrap Column

This is probably something simple, but I can't figure it out. I have a table where users input data into columns. Each time the user enters data a new column is created. After a while they have a TON ...
6
votes
6answers
755 views

jQuery wrap multiple div elements on same class

Hello I would like to use jQuery to wrap sets of class elements in a div but can't find the solution HTML: <div class="view-content"> <div class="first">content</div> ...
0
votes
4answers
72 views

Wrap from X to Y items using jQuery [closed]

http://jsbin.com/uxepap/17/edit How do I wrap all links from the third to the last with one <span class="wrap"></span>? Try to make fixes, if it works, links would be on the red ...
3
votes
1answer
371 views

Javascript - Getting the last word in a line

Here is an example: <div><span style="font-size:15px;">some text here which is </span> <span style="color:red;">split automatically by the browser.</span></div> ...
0
votes
1answer
340 views

html - Get wrapped text from textarea

I'm trying to get the word wrapped line breaks from a textarea without having make any server calls. This answer gets me 90% of the way there. The problem is that the page is reloaded inside of the ...
1
vote
1answer
241 views

jQuery get string, extract id and wrap text

if i have the html below <p> some random text :) video?v=E_LkHrerwe4lnhhnrCbo another video?v=567ghf564_-56e</p>​ <p> some2 random2 text2 video?v=rt5y5yvbn5y</p>​ using ...
0
votes
1answer
151 views

Create a DIV for each 5 elements

I would like to make that for each 5 elements, I have one div. You can see here an example: http://www.nobregamedia.com/aa/ At the bottom, I have a gallery with 5 elements, changeables by the orange ...
0
votes
2answers
89 views

How would I replace a DOM node and wrap it after?

Consider the following: I have a div which I'm replacing with a textarea like: var $targetDiv = $('#the-div'); var $newDiv = $('#the-new-div'); $targetDiv.replaceWith($newDiv); Which would turn: ...
0
votes
3answers
864 views

Wrap a link to all images inside a div with jquery

I have something like this: <img class="photo" src="www.example.com" /> <img class="photo" src="www.example2.com" /> <img class="photo" src="www.example3.com" /> And i need to get ...
1
vote
3answers
215 views

Wrap Image jquery and javascript

I don't understand very well this code: var img = $('<img/>', {class: "photo", src: photo.url_n, width: wt, height: ht}).css("margin", border + "px"); It seems to create an image tag: <img ...
1
vote
1answer
112 views

How to wrap text in myeclipse?

I am working on myeclipse 9 but I could not find any such feature of wrapping long lines. Previously I was working on Myeclipse 7 and my friend suggested me a plugin ...
0
votes
5answers
678 views

Wrap text in js

Before I proceed with my question, I want to mention here that I searched this site to see if the question is already posted. I see some similar question but none of them addressed my need. So I am ...
1
vote
4answers
809 views

How to wrap text in span tags except first word with jQuery?

Is it possible to wrap the lasts words in a string with span tags excluding the first word? So it'd be for example: var string = 'My super text'; Becomes My <span>super text</span> I ...
1
vote
2answers
165 views

javascript: wrapping all occurances of known text inside a html document

I have been trying to find a FAST solution for this problem: I want to find all TEXT or HREF matching a regexp within an HMTL document and wrap those with a tag (e.g. turning plain text into links). ...
3
votes
4answers
327 views

how to use wrapInner() to wrap a certain content inside ah html tag?

I've got a html code like this: <ul class="table"> <li>Height: 70cm</li> <li>Width: 100cm</li> <li>Depth: 400cm</li> <li>Color: yellow</li> ...
0
votes
3answers
437 views

Find img src and append to href

I am using the JQuery Plugin Galleriffic with a content management system. I need to generate the thumbnails with Jquery. I basically need to use Jquery to look inside a div, find all the images, ...
0
votes
1answer
112 views

How to overflow texts instead of wrap in an element

I'm adjusting the width of a div element, but the <li> contents inside wraps with the width adjustment and does not overflow. I want the texts to not wrap, but instead to overflow whenever the ...
2
votes
5answers
2k views

jQuery: How to get the wrapper element created with “wrapAll()”?

Consider the following code: (live example here) HTML: <div class="a">Hello</div> <div class="a">Stack</div> <div class="a">Overflow</div> CSS: .wrapper { ...
1
vote
1answer
261 views

jQuery: How to wrap from tag to tag (including text nodes!) in a div.

I have an html page whose formatting I CANNOT change and looks like this: <A HREF="Lorem ipsum.htm"><B>Lorem ipsum dolor sit amet</B></A><BR>consectetuer adipiscing ...
2
votes
4answers
2k views

Pure javascript method to wrap content in a div

I want to wrap all a block of code within a div with javascript. I know it is easily done in jquery, but I was interested in knowing how to do it in javascript. Here is the code: <div ...
0
votes
5answers
683 views

Wrap var img = new image with tag

Trying to preload images in a loop and it works fine but how to wrap each image with another tag. Doing this code wont work and i cant see a problem so far. ... var img = new Image(); ...
3
votes
5answers
480 views

Wrap every image in a article with the “href” of parent link title

I have this code: <ul> <li> <h3><a class="title" href="page1.html">Post Title</a></h3> <ul> <li> <img src="imageOne.png" ...
0
votes
1answer
234 views

How to detect where the word is wrapped

I would like to add 'span' tag on the beginning and '/span' on the end of each line of text as it is presented in the website and change it dynamically when a div containing such text is resized. The ...
0
votes
2answers
382 views

JQuery .wrap is triggering .ready a second time

For the first time ever I've not been able to find an answer to a question here. So, I'm sure I'll need to take a noob lashing, but here goes: For IE7/8 only, I'm trying to wrap a div around my main ...
4
votes
4answers
594 views

How to wrap a class around the first half of a headline with jquery?

This is my first post, so please be gentle. I'm trying to wrap a class around the first or the second half of a headline so that I could create more dynamic and cool headlines with jquery. In ...
1
vote
0answers
245 views

Jquery htmlbox 'unwrap' function

In reference to this plug-in: http://remiya.com/htmlbox/files/demo/4.0/htmlbox.full.js It doesn't currently have an 'unwrap' function, but it does have a "wrap" one: this.wrap_tags = ...
1
vote
1answer
163 views

wrapAll 3 class elements

I'm stuck with trying to capsulate 3 divs inside one wrapping div. So far I have managed to get 2 divs wrapped up, but I can't figure out the last one. You can see my JS fiddle here: ...
7
votes
3answers
4k views

Jquery: selectionStart for non textarea elements

$(element)[0].selectionStart seems to only work for textareas. Is there an alternative for non textareas Im trying to wrap strings within DOM elements in tags (bold, italic...) also, how do I undo ...
0
votes
2answers
574 views

jquery input.focus + wrap can't type in input

<blink> <input type="text" class="form-text required" value="" size="35" id="editfiled" name="somename" maxlength="128"> <div class="description"><p>some text</p> ...
2
votes
1answer
716 views

jQuery: replace() or wrap() http://name.tld/request_url?parameter with <a href=“this”>…</a>?

Ist there any better way to replace/wrap the h*tp://name.tld/request_url?parameter or h*tps://name.tld/request_url?parameter text in some certain html elements with an <a href> HTML <div ...
5
votes
2answers
1k views

jQuery How to wrap div around multiple of the same class elements

I'm trying to wrap multiple same class divs into a div and to skip divs not with the same class. .wrap doesn't combine them, and .wrapAll throws the non-classed divs underneath. I've been tinkering ...

1 2