Tagged Questions
5
votes
2answers
174 views
jQuery add first part of div, then add last part of div seperatley
I'm trying to wrap the following prices and text together, all in one DIV.
This is what I have:
<table cellspacing="0" cellpadding="0" border="0" class="thePrices">
...
4
votes
2answers
63 views
Weird insert problem with jQuery
I got a list that i wan't to interrupt via javascript to add a title:
From:
<ul>
<li>1</li>
<li class="afterthis">2</li>
<li>3</li>
...
3
votes
4answers
69 views
jquery add closed tag
I have a problem with jquery. After many tests, no simple solution for me.
My CMS return me this code
<ul>
<li>text</li>
<li>text</li>
<li ...
3
votes
2answers
1k views
How to append after selection
I am trying to append some code after my current selection, lets say I have this:
<div id="test">
</div>
and want to append <br /> after closing div, like this
<div ...
3
votes
2answers
108 views
.after() putting the first div as the last one
Hay all, i have a basic big of jQuery. What I'm trying to do is take the first div from a group of div and make it become the last div in the group, the HTML looks like this
<div>
<div ...
2
votes
2answers
47 views
javascript/jQuery call a function _after_ event has been completed and returned
I need to call a function to check the value of a form input box after the keyDown event and all its corresponding callback handlers have finished and returned. I know I need this because if I place a ...
2
votes
3answers
204 views
select all div elements in DOM after an element?
I'm running something like this to select all div elements in DOM (and this is good for me):
var $mySelection=$("#wrapper").find('div').not("#main-content, #etc")
How would I select all div ...
1
vote
3answers
85 views
Jquery: How to combine addCLass() after() and slideDown()
I'm trying to add a Class to an existing div container and insert a new div (on success) below the existing one.
<script>
$(document).ready(function(){
$(".entry").click(function(){
...
1
vote
2answers
56 views
wrap elements already created (after, before, etc.)?
I've already created my divs in Jquery, but i would like to wrap them all in a div, to work with slideToggle. But i don't see how i can do that, could you please help me?
here's my code :
var ...
1
vote
3answers
168 views
jQuery append or appendTo after an img
I cannot get this simple append working. I'm trying to add two break tags AFTER the first Image.
This is a link
...
1
vote
2answers
95 views
Click event not triggering on after-added spans
This code isn't working as expected:
function makeToken()
{
var $span = $("<span>new</span>");
$span.bind('click',function(){
alert('test');
})
return ...
1
vote
4answers
1k views
How can I detect 'any' ajax request being completed using jQuery?
I have a page where I can insert some javascript / jquery to manipulate the output. I don't have any other control over the page markup etc.
I need to add an extra element via jquery after each ...
1
vote
3answers
446 views
jQuery, how to load ajax content after a specified element
I need to load some ajax content after the fieldset with the class address. Using the code below it will replace the content of the .address with the ajax content.
$('.accordion ...
1
vote
1answer
601 views
JQuery / JCarousel: Using WrapInner and nth selectors to only wrap every 8th item
I want to use JCarousel to display UL elements with LI containing only eight images (two rows of four), something that looks like this:
<li><div>[image][image][image][image]
...
0
votes
1answer
43 views
How to replace content after a container
I have a container as shown below
<div class="container>
</div>
The intention is to add content below the container div. I use the JQuery command '.after'
...
0
votes
2answers
45 views
(jQuery after) Returning last insert Object
Is there a way to return the new inserted object added by the "after" or "before".
0
votes
5answers
99 views
jQuery Insert After Append?
I have the following HTML
<ul>
<li>Some stuff first<li>
</ul>
Basically I am using appendTo(ul) to append a bunch of stuff to this but I want it to actually append AFTER ...
0
votes
0answers
23 views
Running Topspin script after AJAX change
Apologies if this is an obvious question. I've been struggling with it for days and I've finally decided to ask for help:
TLDR version:
Why isn't topspin_core.js doing anything after AJAX content ...
0
votes
3answers
70 views
jQuery run script after
I have a problem with the load of a js action, i have these two lines:
$(".sorter td:first-child").css("width", "13px");
$(".sorter td:last-child").css("text-align", "center").css("padding", ...
0
votes
0answers
138 views
jQuery url after ajax redirection
Im trying to get the url of an ajax post made through jQuery api. The problem is the page I am sending data is doing a redirection and I need a way to get the redirected url. Any ideas? Many thanks.
0
votes
2answers
96 views
jQuery cloning or moving ajax info from another page
I am attempting to clone (or move) information from one page to another using jQuery and ajax. This code currently does nothing for me and is all I have to work with:
Essentially it is checking the ...
0
votes
4answers
31 views
.after needs to be changed with right
I am using the following jQuery function to append an element just after an input:
var emailToVal = $("#nameFrom").val();
if(emailToVal == '') {
$("#nameFrom").after('<div ...
0
votes
0answers
81 views
Close dialog after SendButton click in asp.net
I am using JQuery UI Dialog, I that I am loading a new page on linkClick event of parent page. My popup page having send button that perform some serverside activity,then I want to close Dialog only ...
0
votes
3answers
100 views
Jquery .after() not inserting as expected
EDIT: Solution found How to wrap every 3 child divs with html using jquery?
I'm printing a list with a lot of <div>'s and want to insert a </div><div class="clearfix"> after every ...
0
votes
1answer
186 views
Appending element to dynamic element using jquery
I am trying to append a help icon to a file upload form field. That part is easy enough. However, the file upload field is also going to be a multiple file upload and I am using the jquery multifile ...
0
votes
3answers
110 views
jquery reset after()
is there a way to reset/update an after() element? Not add another after() text. Thank you
0
votes
2answers
233 views
.before()/.after() element without it closing automaticly
This is what I'm trying to do.
I am calling on a xml file and creating alto of div around the content from the file. What I want to do is to add a div around every 15 div. The divs have the class ...
0
votes
1answer
95 views
Add TR after matched set, or at end if matched set is empty in jQuery
The Question
I'd like to add a new TR in a table after a given matched set, or instead, at the end of the table if the matched set is empty. Given the following html:
<table id="blax">
...
0
votes
1answer
564 views
Jquery .after() IE problem
Im making a login form for a webbased game, Styled it very pretty etc. Used Cufon to markup some text.
Now i have a submit button which is very standard. So i tried applying css and Cufon.
Not ...
0
votes
1answer
496 views
jQuery .click disabled after .load action
trying to set up a nice drag and drop save to database page.
It also should be able to delete the lines, I've used a list (ul/li). And all works fine, but as soon as the load action has done it's job, ...