Tagged Questions
0
votes
0answers
7 views
jQuery Masonry scrolling jumps when deleting items from the DOM
I'm working with Infinite Scroll using JQuery-Masonry. To improve performance/memory usage, I remove items from the DOM outside a certain threshold of the screen that is view-able to the user (based ...
2
votes
3answers
46 views
How can I remove() an object after appending it to the page?
I'm trying to use jQuery to allow a user to specify a pool of objects which they can then remove.
I want the user to be able to click on the list of objects to add them to the pool, and if they wish ...
2
votes
2answers
37 views
Duplicate index on seperate dom elements jquery
I have the following html structure
<div class="someClass">
<button class="actionButton" id="b0"></button>
</div>
<div class="otherClass">
<button ...
0
votes
5answers
35 views
Simple jQuery loop & Return the current value
I am trying to figure out how to write what I believe is a pretty simple jQuery function, but could use some help.
So I have a var called "linkr" and I am using it like so.
...
0
votes
1answer
20 views
Finding spec valid attributes for a given element
I came across a question today where, in part, the user wanted to disable all the form elements within a container upon a triggered event using jQuery.
For part of my answer, I suggested selecting ...
0
votes
1answer
43 views
How to reload function after adding new elements to DOM
I'm working on a +Follow function for a profile in my app. Follow functionality works just once (on a fresh page load), but after the script replaces DOM elements, it doesn't work.
HTML output when a ...
2
votes
1answer
31 views
Best approach for rearranging DOM according to screen size
I have a standard website which contains its navigation part way down the page. When resized down to 980px a media query kicks in and the navigation needs to change appearance (easy) but also change ...
1
vote
1answer
51 views
What is the preferred way to assign a jQuery object to a Javascript object for event binding?
Example:
I want to create a multi-window webapp. Each window is a jQuery object (with a DOM element attached to it), but it should also have specific properties and methods (such as close() or ...
0
votes
1answer
19 views
How do I manipulate object.style.animationDuration outside of Chrome?
I know that throwing the webkit prefix at the start works for Chrome (as object.style.webkitAnimationDuration), but I have yet to find any way of making this work with the Opera prefix, and I'm not ...
1
vote
3answers
33 views
JQuery: Retrieve and update SINGLE span value inside a (wordpress) loop
I've been struggling with this for two days, obviously because I have a very little knowledge in jQuery / Javascript, and I think I've searched thoroughly for so many times but didn't get the answer ...
0
votes
1answer
22 views
How to manipulate DOM after new elements have been inserted?
I am working on a Woocommerce/WordPress site at the moment and on the checkout page, when I submit the form, it submits through ajax and if there are errors (required fields not filled in etc), the ...
1
vote
2answers
43 views
jQuery not working on IE 9 when retrieve grand child element
The following jQuery doesn't work on IE9. Unfortunately I am on jQuery 1.4
var denomAmount = j(this).closest('.denom').children('.denomValue').eq(0).val();
Dom structure is like this
<tbody ...
0
votes
1answer
43 views
IE 9 debugger how to get variable value
My code not working on IE 9 but fine in Firefox:
var denomAmount = j(this).closest('.denom').children('.denomValue').eq(0).val();
I want to find what is eq(0) going to return but IE9 debugger give ...
1
vote
3answers
41 views
Manipulate Custom Values with jQuery
<img src="" class="className" click="" id='button4' u="button6" r="button5" l="ele1" d="" />
I have an image wherein I need to change the value of the "U" data type. The "U" data was put in ...
0
votes
3answers
32 views
Create element thats embraces an existing one
I need to create a div that will contain another div that already exists in DOM.
<div class='a'></div> to <div class='b'><div class='a'></div></div>
I created a ...
0
votes
0answers
26 views
js/jquery: set cursor after contenteditable div. Some cases do not work in IE
I need to set the cursor at the end of a particular element. I found the below code for setEndOfContenteditable(contentEditableElement) here on Stackoverflow.
The code works great when it is run ...
0
votes
1answer
36 views
js/jquery: contenteditable, insert text and move cursor to end
I need to insert text into a contenteditable div and then have the cursor be at the end of the inserted text.
I got the solution below from here Insert text at cursor in a content editable div.
...
0
votes
1answer
7 views
Jquery Select Boxes into Likert Table
So I am trying to use jquery to dynamically change an entire fieldset of selectboxes into a likert table of radio buttons.
I've found other solutions show you how to create a single select box into ...
3
votes
1answer
72 views
Index of list item clicked does not reset
On a fresh page load, the code works just fine and will display the correct information, but if you navigate backwards and try again, it displays the information from the first click. First off, here ...
0
votes
0answers
26 views
Js/jquery: clean contenteditable copy-paste, same look as if manually copied to textarea
I want to clean the copy-paste contents before they are copy-pasted into my contenteditable div.
I want the text to look the same as if it had been manually copied into a text area. That means ...
0
votes
1answer
24 views
Js-jQuery - check if element is focused or get last focused element class
is it possible to check if an element is focused?
i tryed:
<a href="#"></a>
$('a').is(':focused');
but it won't work.
Also i would like to understand if is possible to get the ...
0
votes
1answer
39 views
js/jquery: copy contenteditable div to textarea, keeping newline info
I have a contenteditable div. It starts out with some children. There is also a textarea. When "enter" is pressed, the contents of the div are copied to the textbox.
My problem is that any new ...
0
votes
1answer
34 views
Referencing Dynamic content with jquery [duplicate]
I use the following code through out my application to create hyper links that load pages into a DIV element
$(".OpenInContent").click(function () {
linkObj = $(this);
var viewUrl = ...
0
votes
1answer
34 views
Jquery detect element injection
Is there a function to detect if a new element injection has been made to the DOM?
Instead of constantly checking after my ajax call to see if there's new images injected like so:
$.ajax({
...
...
4
votes
1answer
32 views
Why is my $(selector).index(filter selector) returning an incorrect result?
I have a variable pages
pages = $("[data-role=page]:not([data-url])");
which is
[
<div data-role=​"page" id=​"home" class=​"home ui-page ui-body-c" tabindex=​"0" style=​"min-height:​ ...
0
votes
1answer
41 views
$(“#id”).val() return option text for a dojo.filteringselect object
We have a dojo filtering select object but have to validate by jquery. Now the problem is
var value= j("#filteringSelectId").val();
value only returns the text of selected option instead of the ...
1
vote
3answers
50 views
jQuery and Prototype methods interfering with each other
I'm working on a legacy project (before Rails 3.1) which has been around for years, so it has Prototype and jQuery all over the place with the general idea to rewrite all the Prototype in jQuery.
I'm ...
0
votes
1answer
32 views
Adding images to dom, then wait for them to load
This is a simple question..
I get a playlist, and then I want to load each image into the dom * there are videos to.
So after all the media has finished loading, I want to be able to call some ...
0
votes
1answer
41 views
JQuery: Target div with identical class name via how many children/descendents it has
Using the following HTML and I need to target only carousels that have 4 or less items in them, ie the second one in this example:
<div class="book_carousel">
<h2 ...
3
votes
3answers
58 views
Trigger click on iframe
I'm aware of the same-origin policy... just getting that out of the way.
Anyway, I have a slideshow (slide.js) that has some embedded videos in it. When the user clicks the video, I want the ...
-2
votes
0answers
21 views
Because jquery functions not binding when control is not visible? [closed]
During load page, one asp.net user control is not visible, after call server postback, this control change your status to visble but jquery not binding in my usercontrol.
when the initial status is ...
1
vote
4answers
84 views
How can I limit the amount of text in a DIV that I periodically add messages to?
I have a web based program that receives one line text messages periodically from the server (with Node.js and socket.io) that I append to a scrolling DIV. The messages are simple text; for example, ...
1
vote
2answers
34 views
Javascript Alertify wait for confirmation then go to another page
I am new to alertify.js . What I am trying to do is, when the user cicks on a link, the browser should show confirmation box. if the user clicks of then go to the next page. if the user clicks cancel ...
5
votes
1answer
140 views
DOM takes too long to react
I'm trying to "GET" an image from a file every 100ms by changing the source of a DOM object. I can see that the GET call is indeed returning the correct image every 100ms, but the actual image display ...
0
votes
1answer
28 views
jQuery RightClick Handler Plugin
I am looking for a way to distinguish the different click types in mouse events with Jquery. I ended up with this small plugin that seems to work. I would like to get some feedback on it.
The main ...
0
votes
1answer
25 views
DOM replacement on backend (asp.net)
I am new to asp.net and I am currently having this on front-end to replace DOM node:
$('foo:eq(0) bar:eq(1)').html('Hello World');
What is the best way to do it on back-end asp.net?
...
0
votes
2answers
26 views
Modify script for working with jQuery-created DOM objects
I have a very good function, that emulate "long click"
(function($) {
$.fn.longClick = function(callback, timeout) {
var timer;
timeout = timeout || 500;
...
1
vote
1answer
46 views
How to get event listener of element set through Jquery in chrome dev tool?
I tried to search but not found exact solution.
If a div element has onclick event listener set by jquery than how to get value/function triggered on click in chrome dev tool?
I try in dev tool but ...
0
votes
0answers
16 views
Chrome is firing mouseout events even though HTMLElement was removed
I have noticed a problem that only happens in Chrome. If you are listening to mouseout events on an element (such as to add a hover effect on something), and some action on the element causes the ...
0
votes
1answer
51 views
Creating temporary HTML code
I try to make my code more modular. Currently I include jspf file which contain code for jQuery Dialog into any required jsp file.
I want to put this HTML code into JS file, so I only need to include ...
0
votes
0answers
37 views
jQuery - How do I execute a function after the DOM has been modified with basic js routing?
I am trying to setup basic routing with jQuery because I want to implement this in my PhoneGap app.
I managed to get everything to work, except one little thing... When I click on the "Show picture" ...
0
votes
3answers
43 views
Attaching Event Handlers to JQuery-generated DOM Elements
I'm pulling some data from an external API and then displaying it in a dashboard page. To do this, I'm generating DOM elements once I've processed the data, like so:
for(var key in companies) {
...
0
votes
3answers
38 views
How to reorder Elements based on corresponding elements' order in Javascript/Jquery?
So far I accomplished to give every link a class name and its corresponding div an id with the same value as the class.
So it looks like this:
<a class="content1">Content1</a>
<a ...
0
votes
2answers
42 views
Adding a series of <li> tags representing attributes about a User model in Javascript
I'm building a Django app that displays information about a user, and I want to display the user's most visited websites as a simple list of items.
To do this, I'm currently using Django's templating ...
0
votes
1answer
24 views
How to use the DOM history object correctly
According to this page on the Mozilla Developer Network, https://developer.mozilla.org/en-US/docs/DOM/Manipulating_the_browser_history, doing window.history.back() ....
... will act exactly like ...
0
votes
5answers
28 views
jquery how to access events on html that was inserted to the DOM
In my web app I have an unordered list of 15 items that appear on load. I am grabbing 100 new items from an API using ajax and adding them to the current ul by using .append(html). Each li has a ...
0
votes
1answer
54 views
Is it possible to send a DOM reference to another browser thru a server?
I want to be able to send some element that I selected with JQuery to another browser which opened the same page. Like if focus a textfield, the selection to happen on the second browser too. With a ...
0
votes
4answers
42 views
Get HTML String for jQuery and/or DOM object
I think I've read through the complete jQuery API documentation and looked at jQuery objects and simple DOM elements in the debugger to check what methods they actually have at runtime, but for the ...
0
votes
2answers
54 views
JS hide html content when mouse leave the content area
I have an element which will appear after I click a button. What i want now is to hide the element when my mouse pointer leave the element. How is that possible? Thanks
JS script :
...
1
vote
3answers
71 views
Get contents of element without escaping in jQuery
I want to get contents of element without any changes. When I using .html(), it unnecessarily escapes characters, for example & to &.
In my code, Content is data come from server. ...




