I am trying to implement a dropdown checklist, unfortunately I just can't find enough documentation for implementation.
Has anybody used this plug-in before?, and if so, do you know of any site with the proper information for it's use?
...
Hi all,
I'm using the hoverIntent Jquery plugin and I have a question regarding callback functions.
In one of my previous questions, it was pointed out that I should use function pointers for the callbacks.
My question is this: how do I pass parameters to the function pointers then?
function initHoverHandler(type) {
var confi...
Is there any way to achieve this? I am using a pagination plugin that reads the number of li's inside my ul and determines the number of numbered links to spit out.
...
I read about jQuery intellisense and couldnt get it working in my classic asps pages.. Is it possible? If it yes what should i do?
I am using VS2008 SP1...
Thanks
...
Being new to functional programming, I was working on my application's javascript (using jQuery exclusively), and wondering how jQuery's event system relates to it's functional programming paradigm.
I have a function setupAccountHeader that could easily be either a document-bound event like
$(document).bind('setupAccountHeader', functi...
Can I get a couple of good examples on how to bind 3 separate functions I've got going on?
...
In a nutshell; I wrote a simplistic chat application for a buddy and me to use. When the window running the application does not have the focus (minimized or behind other windows) and a message comes in, I want to change the windows title bar to serve as an alert. Exactly like Google's chat application does in GMail.
Everything works f...
I have a tab from which an external modal (jqModal) gets triggered, and then from it a web page (window.open()). If certain events happen, I need to reload the original tab with new data.
Is this possible from a separate web page? (Reloading a particular nested tab from an external page).
Or would I to go for nested modals?
Thank ...
I'm using the following code to populate a 2nd select box with cities:
jQuery('#country').live("change", function(){
populateCityListBox();
alert(jQuery("select#city").val());
});
- - - - - - - - - - - - - - -
function populateCityListBox()
{
jQuery.get("my/path/myfile.php", { instance: 'getCitiesByCountry', co...
I have written a Greasemonkey script which manipulates the contents of certain elements with the following selector:
$("span.relativetime").each(function() { $(this).html("TEST"); });
However, sometimes matching elements are added to the page through AJAX, and I don't know how to handle those new elements. I have tried this, but it d...
I have a table with a "select all" checkbox as the first header column and some simple code to select all checkboxes on the page when the header checkbox is clicked.
$('#CheckAll').bind('click',function() {
var checked = $(this).attr('checked');
$('input').attr('checked', checked);
});
the code runs fine, but as so...
What is a current good version of the autocomplete for jquery?
I saw this post
http://stackoverflow.com/questions/188442/whats-a-good-ajax-autocomplete-plugin-for-jquery
However I can't downgrade the UI for other parts of the site, and autocomplete is not a part of the newer 1.7.
Suggestions?
...
Is this possible? Looking for a way to set a proxy setting view web page. Can I embed it or run some JavaScript, etc...
...
For some specific reasons, I need to use the jQuery 'load()' method in order to feed a webpage into a div layer.
Most of these webpages are plain .html files.
However for some, there is some data processing going on - I would like to be able to leverage the ASP.NET MVC model (which the site is built in) - but that's not possible with ...
I'm using the jQuery toggle effect hooked to the click() event of 1 table row to toggle the visibility of the next row (which also happens to be the final row in the table). If I click the firing row multiple times in succession, the table that contains the 2 rows grows a little every time the toggling row shows.
Here's the jQuery I'm ...
Yes, I know it doesn't work in IE and using 'click' works. But here is my problem.
I have two select boxes - Country and City.
Selecting a country populates the city select box (and updates a google map).
The following code works like a charm in IE and Opera:
if (jQuery('#city').length > 0) {
jQuery('#city').change(function(){ ...
Need help resolving a display problem on Fancybox content in IE8. It
works fine in IE7, but when you click on the link in IE8 the content
displays but without any of the styling.
Link: http://www.gotoadvantage.com - click on sub navigation in the
box to the right - where it says advantage overview.
I inherited this from another develop...
Hi,
I'm trying to test the jQuery calendar tool, but it appears to be too big,
bigger than the preview page.
Any ideas?
Thanks!
...
I am using jQuery UI tabs to have a tab where I can search for records and then other tabs where I can view individual record details. I am trying to have search results link clicks open the relevant tab and load the specific ajax content for that search result.
I am able to switch tabs using an href with something like the jQuery UI t...
And how exactly does it relate to jquery? I know the library uses native javascript functions internally, but what exactly is it trying to do whenever such a problem appears?
Thx for any response in advance.
...