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

0
votes
4answers
178 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
159 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
84 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 ...
2
votes
0answers
84 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
64 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
120 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
76 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 ...
5
votes
7answers
17k views
+50

jQuery Rotating Wheel Menu

Does anyone know of a plugin for jQuery that emulates a sort of rotating wheel system?
1
vote
0answers
134 views
+50

How do I execute jQuery promises in phantomJS?

I'm using trying to use nodejs and phantomjs on the server-side for SEO of our site. While ajax works fine, I'm not able to execute custom promises that I've used in my code. How do I make phantomJS ...
2
votes
2answers
86 views
+50

Simple javascript inheritance using $.extend and module pattern

I have wondered for a couple years now what people think of doing inheritance with a module-pattern-esque constructor pattern and WITHOUT normal prototypal inheritance. Why do programmers not use a ...
4
votes
1answer
283 views
+150

Is there a way to pass an initialization function to an Orbit slideshow?

I solved my original problem, but I'm wondering if there's a more elegant solution. I'm using Foundation's Orbit to create a slideshow. This is no simple slideshow, it is a slide show where each ...
1
vote
1answer
56 views
+50

SVG with pattern and image element conversion to PNG Image failed

I am trying to covert svg generated with Raphael.js into PNG image. Well, I converted the svg into image when svg has no pattern and image component. Then again when I add these two component into SVG ...