jQuery is a cross-browser Javascript library that provides abstractions for DOM traversal, event handling, animation, and Ajax interactions for rapid web development.

learn more… | top users | synonyms

-2
votes
1answer
50 views

How to avoid jquery Conflicts? [on hold]

In my site i have a image zoomer and popup options.and the code for those options like below,the popup works fine but the zoomer which is included before popup is not working properly. <script ...
0
votes
0answers
9 views

Unable to spyon multiple success callback of an ajax call in Jasmine

My source code has 3 AJAX callback functions, 2 from the parent and 1 from the child function. I know source code look little weird. But i can’t change it now. I want to run jasmine test spec. Source ...
0
votes
1answer
60 views

How to test functions or the code inside $(document).ready() using Jasmine?

I have multiple functions and a lot of code inside $(document).ready(function()). I am using jasmine to test the functions inside the ready function as well as the code inside ready() but when the ...
-1
votes
2answers
38 views

How commonly used is jQuery DataTables, and what are the alternatives? [on hold]

I'm doing some work on a project that uses jQuery DataTables. I've never used this particular jQuery extension before. In the past, I've used the ASP.net DataGrid control, which of course is not ...
-3
votes
3answers
136 views

HTML + CSS or HTML5 + CSS3 or HTML5 + jQuery [closed]

I want to be a good UI Developer. I'm confused whether I should learn (I need some serious suggestions): 1) HTML + CSS + JavaScript or HTML5 + CSS3 + JavaScript or HTML5 + CSS3 + jQuery 2) Is it ...
1
vote
1answer
168 views

Is the “jQuery programming style” a kind of Reactive programming?

jQuery is a Javascript library and framework, but when we are programming with jQuery into DOM problems/solutions, we can practice a style quite different of programming... We can read about jQuery ...
-3
votes
0answers
59 views

Accessing web Service from jQuery - cross domain? [closed]

In one of project i want to call cross domain ajax call . the proble scenario is given below I have one web service hosted in domain name ' lensmenreviews.com 'and i wanted to call that webservice ...
-2
votes
0answers
47 views

Show jquery native popups in android webview [closed]

I am using android webview an i am not able to display jquery customized pop ups in it.Can any one help me out?
0
votes
0answers
58 views

Are there any benefits to removing unused script files in a web site/project?

VS Web sites/projects come loaded with several .js files, most of which I don't use (e.g., I use a CDN for newer versions of jQuery and jQuery-UI). I know it's safe to remove these unneeded .js files ...
-1
votes
0answers
47 views

After a user hits the submit button, how do I make an image or icon appear over another image? [closed]

This question is for a website coded in HTML. http://www.blogcdn.com/devblog.mapquest.… *I pulled the above image from google (located on mapquest.com) and I do NOT own this image. With that said, ...
-1
votes
0answers
56 views

unable to understand triggerHandler() method [migrated]

I am not able to get following point of triggerHandler() method: 1)While .trigger() will operate on all elements matched by the jQuery object, .triggerHandler() only affects the first matched ...
0
votes
0answers
24 views

Best practices for hiding/showing of controls when dropDrownList changes in ASP.NET [migrated]

So far I am hiding/showing controls after dropDownList changes index using 'DropDownList_OnSelectedIndexChanged'. And as far as I know this hiding/showing will always trip to server and I read on ...
0
votes
1answer
207 views

What is the pronunciation of $ / $. in jquery [closed]

When you are reading jQuery code aloud and you get to anything that uses $, do you pronounce that as "dollar sign", "jQuery", "jQuery selector". Is there some other pronunciational shorthand for the ...
-2
votes
1answer
118 views

Will I need to use AJAX for this?

Say I have a model written in php whose properties are the columns of a table in a db and each instance of the model represents a row in the table. I also have a page ('view') where I display the ...
1
vote
0answers
132 views

What is the rule on passing around collections? List vs. Ienumerable vs. IQueryable

I do Entity Framework stuff using repository patterns that are passed to the controller to than be called by the client using jquery AJAX.. Is there any basic rules on in what format I should be ...
0
votes
0answers
33 views

framework for managing many jquery ajax call which call most of the server side methods

We have completed a simple leave management system in asp.net form application , In which most of the code written server side. Now my Project manager wants that each server side code to be replaced ...
10
votes
3answers
594 views

Object Oriented Programming in JavaScript. Is there life without it? [duplicate]

At our company we have pretty large body of PrototypeJS based JavaScript code, which we are porting to jQuery for several reasons (not really important here). I'm trying to set up coding guidelines to ...
0
votes
0answers
72 views

Unit Tests for Database Abstraction Layer

I previously asked this question about creating an algorithm for joining records from multiple databases, and since then, I have built a rudimentary version of it (which doesn't allow for inter ...
-4
votes
1answer
165 views

Making <li class=“”> active and inactive [closed]

I have a simple html page in which i'm including header.php, footer.php files. In this page there is a sidebar which is styled by css. I want to take this sidebar out and include it through php ...
-1
votes
1answer
43 views

ASP.net extended with client side operations [closed]

What is the best way to "extend" my ASP skill set to include more client side orientated actions. I am developing the growing need to do things "faster" , without post backs... I am talking about UI ...
6
votes
4answers
191 views

Issues to be considered while loading jQuery?

I have seen many answers in SO regarding using Google's CDN to load jQuery instead of loading it from the local server. In essence I understand this is the issue related with decreased latency, ...
2
votes
2answers
265 views

Client side web development, general question

I'm a novice web developer, mostly worked with ASP.NET. On the server side, everything is very well documented and whenever there is an error, you get an explanatory error message. But on the client ...
0
votes
2answers
214 views

Client = Html5 + CSS3 + JS + Jquery. Server =?

I want to build most of my functionality on the client. However I'm not quite sure which server-side web development framework can provide me with a nice REST endpoint to handle resources, business ...
0
votes
3answers
135 views

What tools can I use for professional document-creation and -printing in PHP? [closed]

I'm in the process of building a new pledge management system for one of my clients, a charity foundation. I have already built one for them (it was done using Delphi), but its feature-set is a little ...
-4
votes
1answer
107 views

Check Javascript coding practice and overall performance [closed]

I have a Edit/Details form which has 4 user related fields. On click of Save, I save the edited fields to local storage (if supported) and display the same values in the Details view. Below is the ...
1
vote
1answer
135 views

Finding the possible combinations of x switches out of y being true

I am working on an algorithm to find possible fills for gaps in text. My function will receive as input: (example) [false,"o",false,"b",false,"r"] representing the string "foobar" with some values ...
1
vote
1answer
78 views

What's the protocol for a autoexecuting JQuery plugin?

I have a jQuery Plugin that I use myself which modifies the selected value of select items on a page. In my own code the plugin automatically executes as soon as it is included in the page this code ...
1
vote
1answer
145 views

Why do we program each file separately and place them in separate folders and how do all these file come together?

I was wondering how the cover flow effect is coded. I used this link which gave me the code on how it all worked out : http://luwes.co/labs/js-cover-flow/. I am completely new to complex programs so ...
21
votes
5answers
1k views

How do I convince my boss (and other devs) to use/consider Unobtrusive JavaScript

I'm pretty new in our develepors team. I need some strong arguments and/or "pitfall" examples, so my boss will finally understand the advantages of Unobtrusive JavaScript, so that he, and the rest of ...
2
votes
1answer
178 views

How to dynamically add new posts once they are created

I am trying to design an application where users can make posts with Django on the backend. Right now I have to refresh the page with JavaScript every 20 or 30 seconds to check for new posts that ...
3
votes
1answer
93 views

use of jquery-latest

I recently had some code I wrote a year ago fail because someone linked my code to http://code.jquery.com/jquery-latest.js In the latest version, jquery had deprecated/replaced a function. ...
40
votes
3answers
2k views

Is jQuery an example of “god object” antipattern?

I want to ask – I am slowly learning jQuery. What I see is an exact example of a God Object anti-pattern. Basically, everything goes to the $ function, whatever it is. Am I right and is jQuery ...
2
votes
2answers
166 views

Using which technique does facebook and pininterest show images?

If anybody has ever noticed that when you open a image in Facebook something like this happens:- suppose you are at your homepage on Facebook:- the URL is https://www.facebook.com/ now if you open a ...
5
votes
1answer
114 views

Creating and assigning console.log a new object

I have seen code like this in several places: (function() { var method; var noop = function noop() {}; var methods = [ 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', ...
1
vote
1answer
195 views

GPL question : web application using Imagick and GhostScript => Which would be the final licence?

I am a bit confusing and I need your help to undertand my problem. I have developed a web application (PHP, JQuery) for one of my customer. Recently, my customer ask me to add a new feature ...
0
votes
1answer
90 views

Suggestions for html tag info required for jQuery Plugin

I have written a tiny bit of jQuery which simply selects all the Select form elements on the page and sets the selected property to the correct value. Previously I had to write code to generate the ...
-2
votes
1answer
98 views

Why is DOM or JQuery considered an API? [closed]

My understanding of an API is this: An API is the interface implemented by an application which allows other applications to communicate with it. So why is DOM or Jquery considered to be an ...
14
votes
7answers
8k views

Advantages of using pure JavaScript over JQuery

What are the advantages of using Javascript-only versus using JQuery-only? I have limited experience with JavaScript and JQuery coding. I've added bits and snippets of each to HTML pages but I've ...
2
votes
2answers
296 views

is it safe to use jQuery and MooTools together?

I just need to know is it safe to use jQuery and MooTools Together in one web framework? I am not trying create application using both of them, but I am in a situation where I need to modify mootool ...
-1
votes
1answer
721 views

Can jQuery be used server side? [closed]

I know that you can use JavaScript server side with node.js, but can we use jQuery for backend as well? Or will I just have to learn CoffeeScript instead of jQuery?
-2
votes
3answers
3k views

How do I Export to excel on aspx page?

I am trying to take data that I request from an access database and put it into and excel file on the client computer. I usually use ajax to request a summary of the data I need. It is formatted ...
5
votes
2answers
2k views

front end development test - html/css/jquery/javascript

We are continually revamping our front end developer test that we do in-house after a candidate has passed an online test. The online test has questions such as: How does a for loop start? What is ...
11
votes
11answers
2k views

Best approach for writing a chess engine?

I'm a chess enthusiast and a programmer. I recently decided to start making a chess engine using my chess and programming knowledge. So here's my question: What language (I'm familiar with Java, C++ ...
5
votes
1answer
219 views

How to contribute to jQuery?

I'm confused about the nature of the jQuery project. It can be licensed under either the GPL or the MIT license, according to the comments in the project. However, the jQuery web site provides a ...
1
vote
3answers
398 views

Next step after creating mock-up screens

I have created some mockup screens for my app in HTML/CSS. I have 4 screens in total. They contain no client-side coding i.e. Javascript or jQuery. The screens themselves are quite bland at the ...
3
votes
3answers
1k views

Best practices: Ajax and server side scripting with stored procedures

I need to rebuild an old huge website and probably to port everyting to ASP.NET and jQuery and I would like to ask for some suggestion and tips. Actually the website uses: Ajax (client site with ...
1
vote
1answer
678 views

Print three copy of asp.net page two copy with diffrent color [closed]

I have an ASP.Net page. I want to print that page 3 times, 2 copies should carry "COPY WORD, as a watermark". I have written this code code to print three copies, but it's asking confirmation about ...
4
votes
7answers
1k views

Is it necessary to memorize code?

I am a new developer, who just got hired at a big company. I don't know how but I guess they are desperate. However, I am well-versed with HTML5/CSS3 though things change and new things are released ...
4
votes
2answers
410 views

Does it make sense to use jQuery in modern-webkit-only web applications?

I'm lately working on a few mobile web apps for Android (2.3+) and iOS (4+). Their browsers support most of ECMAScript5, which is very powerful, and I wanted to use language features where possible, ...
1
vote
1answer
421 views

use of script tag in different position of page [closed]

I found that sometimes the script don't run properly when I add script tag in the head section. But when I add script right before the ending tag of body it works fine. What is the difference between ...

1 2 3