jQuery is a cross-browser JavaScript library that facilitates DOM traversal, event handling, animation and AJAX interactions.

learn more… | top users | synonyms (3) | jquery jobs

14
votes
5answers
389 views
+100

Get the offset position of the caret in a textarea in pixels

In my project I'm trying to get the offset position of the caret in a textarea in pixels. Can this be done? Before asking here, I have gone through many links, especially Tim Down's, but I couldn't ...
1
vote
1answer
227 views
+50

Implementing a master view with multiple collections. Backbone.js

EDIT my humble mockup of what I want to implement I have defined such a view: define(['jquery', 'underscore', 'backbone', 'text!_templates/gv_container.html', 'bootstrap/bootstrap-tab'], ...
9
votes
7answers
364 views
+300

How to fetch the background of DIV on a bottom layer with exact position using jQuery and CSS

I'm looking to make a page that has a background gradient that changes color every few seconds and blends between transitions. Now I want to apply this effect on the to the upper elements that are ...
11
votes
3answers
218 views
+50

mousemove event is triggered onscroll even when mouse was not moved on chrome

I was trying to answer an issue with custom drop down, but challenged by an inconsistent behavior in Chrome and FF. DEMO: http://jsfiddle.net/fyeht/ [Added scroll event for more clarity] See below ...
-2
votes
1answer
129 views
+50

image cropping is not working in the jquery dialog box

I have used the tutorial as mentioned here crop and upload image using html 5 and jquery. I have implemented it and it is working fine if I am using the image_div on the same page. The cropping ...
0
votes
3answers
133 views
+50

Javascript Gallery that automatically uses all large images on page

I have a site with lots of images on one large page. The easiest would be a Script that i could include, that automatically searches through that same page and uses all images larger than 100px to ...
0
votes
1answer
102 views
+50

primefaces partial processing not working

I would like to use partial processing but it does not work in my code. Does anybody knows why? <h:form id="frmVehicle" prependId="false"> <p:toolbar styleClass="form_toolbar"> ...
0
votes
1answer
56 views
+50

isotope reorder after search not working

I've integrated a jquery search plugin to search through isotope elements, the plugin uses regular expression to sort content, in real-time, based on the search input. Isotope elements are ...
1
vote
0answers
53 views
+100

Incorrect results arrow (angle) to geolocation

I have a question about showing an arrow to a location. This is what I have: You can save your current location in the localstorage. A while later when you are for example 30 meters further you can ...
0
votes
0answers
39 views
+50

Jquery mobile problems in android 4.0.3 Device

I use jquery mobile and bind data dynamically from php json services like this: $.getJSON("http://www.example.com/test/test_service.php?user_id=55", function(data) { var n=0; for (var i in data) { ...
1
vote
2answers
71 views
+50

Browser aborting ajax requests sporadically without return any errors

In my project (PHP w/ symfony2) I do a lot of ajax requests in every page. I'm having a lot of problems with them because it looks like browsers (tested in Chrome and Firefox) are aborting requests ...
0
votes
1answer
44 views
+100

Change image (svg) on click

I'm trying out Raphael + vectron, and i'm trying to change a svg image with a button click. This is (of course) not possible due to that when the svg is rendered it's rendered as path: <path ...