Tagged Questions
1801
votes
52answers
633k views
How can I get query string values?
Is there a plugin-less way of retrieving query string values via jQuery (or without)?
If so, how, and if not what plugin do you recommend?
19
votes
4answers
43k views
Cross-browser bookmark/add to favorites javascript [duplicate]
Is there any Cross-browser bookmark/add to favorites javascript.
Searched for some list but none is working. Can you please suggest any ?
96
votes
8answers
75k views
Eclipse JavaScript editor [closed]
I'm looking for opinions on the best JavaScript editor available as an Eclipse plugin. I've been using Spket, which is good, but I'm convinced there must be something better out there. Is there?
10
votes
3answers
31k views
How can I obtain the local time in jQuery?
I am using jQuery and I need to get the local time for Germany.
Anyone coming to my website from any country should be able to know what time it is in Germany.
If the time is between 0:00 and 12:00 ...
11
votes
5answers
9k views
Please recommend a JQuery plugin that handles collision detection for draggable elements
We're using the Draggable JQuery UI plugin and need to disallow overlapping among our elements. We could write some collision detection ourselves but would prefer to use a tested package. Any ...
1
vote
1answer
253 views
Issue on extending functionality on a simple jQuery plugin ?
This test plugin, is supposed to work like this: When an element is clicked, it moves down. Simple as that.
jQuery.fn.moveDown = function(howMuch){
$(this).css("border", "1px solid black");
...
18
votes
7answers
32k views
Where can I find a good jQuery drop shadow plugin?
Does anyone have a good recommendation for a drop shadow jQuery plugin?
I've been working on a project that had every element on the page with a subtle drop shadow, we started using RUZEE to do the ...
9
votes
4answers
5k views
jQuery plugin design pattern (common practice?) for dealing with private functions
I've been developing jQuery plugins for quite some time now, and I like to think I know how to design one well by now. One issue keeps nagging me though, and that is how to deal with private functions ...
16
votes
3answers
15k views
Javascript image editor library
My friend and I have plan to build a web shop. One of the shop's main feature is the ability for the customer to design their own stuff. My friend took polyvore website as an example.
The above link ...
16
votes
5answers
22k views
How can I hide the jqgrid completely when no data returned?
I'm having a heck of a time trying to only display my jqGrid when records are returned from my webservice. I don't want it to be collapsed to where you only see the caption bar either, but if that's ...
1
vote
2answers
2k views
How to block editing on certain part of content in CKEDITOR textarea?
I have my CKEDITOR form prepopulated with hidden table which is being submitted together with user inputed text. This works fine, but sometimes user presses backspace too many times and deletes the ...
36
votes
2answers
25k views
What's the .apply jQuery function?
I see that in different plugins and codes, but I don't understand what does that function... In the jQuery api isn't referenced!
8
votes
1answer
3k views
Generating async Javascript events from browser plugin (NPAPI)
I'm writing a web browser plugin (NPAPI.)
My plugin starts a worker thread, and as the worker progresses, I'd like to pass events back to Javascript. But because of the NPAPI threading model, it's ...
3
votes
2answers
6k views
jQuery plugin public method/function
I am trying to achieve something like the following but dont know whats wrong:
$.a = function() {
// some logic here
function abc(id) {
alert('test'+id);
}
}
$.a.abc('1');
I tried using the ...
2
votes
2answers
3k views
JavaScript libraries to detect browser capabilities/plug-ins
I'm trying to find a (preferably open source) JS library to determine as much information as possible about the user's Web browser environment. I know it's possible to get such data as:
Screen ...