I'm creating a contest sign-up page for our annual math competition at my school. It requires some AJAX like behavior when you click and select an item in a dropdown list.
I've gotten an event to fire when I select something in the dropdown (I'm currently showing an alert box):
<script type="text/javascript">
$(function() {
...
So I'm using a very basic jQuery .slideDown which is working great in FF, Safari, and Chrome. Won't work at all in IE7. here is the script:
//Top Mailing List Drop down animation
$(document).ready(function() {
$('div#top_mailing_hidden').hide();
// Expand Panel
$("input#top_mailing").focus(function(){
$("div#top_mailing_hidden").sl...
I am developing a website which is similar to stackoverflow.com. A poster is required to enter 1 to 3 tags for his problem or task.If a tag has more than one word, then - is used to combine multiple words into single-words, space is used to separate tags. I use Jquery form validation plugin to validate the form. I need to add a customize...
I have a set of jQuery plugins I'm creating for a website.
All of these plugin have the common functionality that they make $.getJSON() calls.
The URL passed in these calls varies based on Dev, QA and production environments.
I would like to store the URL in a central place so it can be easily changed.
Where should the URL be stored?...
I am trying to call a servlet from jQuery's .ajax() function.
At the moment I don't think I am even calling the servlet or passing paramaters to it, however lots of Googling doesn't seem to have helped. Any ideas?
This is my html:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script type="text...
Hi,
i have a very strange problem, i have one user control that it reference 2 javascript, one is jquery.js and another one is jquery plugin (jquery.corner.js). on my asp.net page, i put this user control as a header for my page and on the page I m using another plugin for datepicker, this page references jquery.js and that jquery plugin...
Hi all,
I have the following problem to be solved.
I have few rows of data. When i click one row the color of the row has to be changed and when i click the other row the color of the previous selected row should become normal and the current row should be highlighted with the color. This is done through the following code.
Check = f...
I'm writing a Google Chrome extension for users to monitor their Stack Overflow account and notify them of new reputation, but I'm having problems with the JSON request to access the rep data. I'm using JQuery as my JSON library.
Using the address: http://stackoverflow.com/users/rep/{userid}/{from-time}/{to-time} where the times are in ...
I am using jQuery calender. When viewed in IE8, the next and previous buttons are not displayed.But i am able to see the buttons when i view the page in IE7.
is there anything that i am missing?
...
I have a table with no id or name inside of a div. How do I read the value from the desired table cell in jQuery? For example:
<div id="myDiv" style="padding-top: 0px; height: 60px;">
<table width="264" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td width="80" height="20" style="font-size: 10px;">
</td>
<td id="the...
I recently scrapped a project that utilized a few different jQuery technologies. After deciding to use Tablesorter (or any other sorting method), I found that I simply had to use it.
I have a list of data and am in need of finding a method to sort it. There is a catch: it needs to also include the range slider. I have a table with ea...
jquery's select() is not working in IE, but its working fine in Firefox and Chrome.
What may be the problem with select() in IE, particulary IE8?
...
How could the jQuery modal overlay (dark transparent background) be made 100% transparent so that it doesn’t show at all on the screen?
...
I want to use jQuery's .get method to send an ajax call to the server.
I am using this line:
$.get("InfoRetrieve", { },addContent(data));
As you can see I want to call a function call addContent and pass it the data that is retrieved from the server.
The function addContent is below:
function addContent(data){
$("#0001").append...
how can i stop and start setInterval on focus and blur.....!!
suppose i have a textarea i want to stop setInvterval on textarea focus and restart setInvterval on textarea blur with jquery
...
I want to my div ids to correspond to items in a database. Based on an id my app will pull appropriate content from a database.
Hence when I use .click() to handle a click I need to pass the Id of the div being clicked to the function that handles it. How do I do this?
...
It is tag input box validation.A poster can combine multiple words into single-words, space is used to separate tags. I use Jquery form validation plugin to validate the form. I need to add a customized method to validate the tag input box.
This is the code:
$.validator.addMethod("tagcheck", function(value, element) {
return valu...
Need to implement draggable and resizable list of items using Jquery or ASP.NET controls. Any code snippets or links?
...
I have the following code
function updateSliderContent(json) { //<- json defined here is correct
var screen_order = json.screen_order.split('_');
jQuery.each(screen_order, function(i, item) {
var screen_id = item;
//at this point it is not, thus the function does not execute whatever is in the if blocks
if (json...
I'm having some trouble with jQuery and IE. I've narrowed it down to this:
jQuery("#missionDashboardRoleFilter").live("change", function(){
alert("called");
});
<select id="missionDashboardRoleFilter">
...
This is working fine in Firefox, Chrome, Opera... but (obviously) not in IE6.
I'm not sure what to do... any idea?
...