I have several checkboxes with the same name and the last checkbox is basically "Other" with an empty text field next to it. I'm using jquery validation and I want to make the empty text field required when the checkbox for other is selected.
Not sure how to do this with the checboxes all having the same name.
Thanks.
...
I have a 3 dropdowns: countries, states, and cities.
States and cities are dependent of the previous form and loaded via AJAX.
In Firefox and Chrome everything is ok, but in IE (8 in my case) when I select a state, the cities dropdown isn't loaded. It is like IE don't detect the change. It is not a load problem, because I have tested ...
I am a nOOb to jQuery.
I want to use variables in jQuery to hide/show divs.
what I have so far is:
$(document).ready(function(){
$('#listMenu a').click(function () {
var getPage = $(this).attr("id");
var getName = $(this).attr("name");
//console.log(getPage);
//console.log(getName);
...
Hello,
I've seen examples for load() and ready(), but they always seem to apply to the window or document body, or a div or img or something like that.
I have a hover() function, and when you hover over it, it uses fadeIn() to reveal it. Problem is, the images inside the div aren't loaded yet, so it ends up just appearing anyway. I nee...
Hi, in the fancybox homepage (http://fancybox.net/home) there is an exemple that opens an iFrame dimensioned as the 75% of the screen.
I cant get it by modifing the width and height properties on the .js file as described on the site.
Someones can help me?
thaaanks
...
I'm using JQuery to switch out an image src thusly:
$("#myImg").attr("src", "../../new.gif");
notice the relative pathing on the new src. Unfortunately, this isn't portable when I deploy my app. In my MVC app I'm using a ResolveUrl() method that will fix the pathing problem for me so it's portable, but now my JQuery image src swapper ...
a jquery plugin is applying an inline style (display:block), I'm feeling lazy and i want to override it with display:none,
what's the best (lazy) way?
...
Hello,
I have a via with some jQuery function to get value from HTML element (to access element available and element not yet available). On of these element is a dropdown, when I select a value an another vue is added in the bottom of the page in a div. When I try to access an element added by this view, I received "undefined". What ca...
I'd like to attach a handler to an element using either jQuery live() or delegate().
Looking at the docs I see I can attach the handler for a custom event.
Is this possible for either of these jQuery functions to also trigger the handler?
Basically I want to attach the handler function and run call it once.
Thank you for any help.
...
Using jquery-1.4.2 and jquery-UI 1.8rc3, I instantiated a datepicker on a text input with showOn: 'focus'. The datepicker appears correctly. However when I click on a date, the datepicker doesn't disappear and the dateStr doesn't get transferred to the text input. I tried adding an onClose: handler that calls alert(dateStr). The even...
In a ASP.NET/JQuery/.NET 3.5 environment, how would I show a DIV with a "Don't show this message again" option when clicked will not show the DIV to the user.
I would need to do it in 2 different scenarios - 1 with authenticated users and the other with anonymous users.
...
I am trying to accomplish the following:
1. On click, have a div with id="fader" fadeout
2. replaceHtml of fader with new html (this new HTML will appear below the fold of the browser)
3. Animate new HTML to slide up to the specified location
Step 1 and 2 are working, step 3 is not and I'm stumped as to why.
Here's the javascript:
$("...
function getData(d){
Back = new Object();
$.getJSON('../do.php?',
function(response){
if(response.type == 'success'){
Back = { "type" : "success", "content" : "" };
$.each(response.data, function(data){
Back.content +='<div class="article"><h5>'+data.title+'</h5>'
Back.content +='<div class="article-...
Hello,
is this a valid JQuery usage pattern to :
<script type="text/javascript">
$("body").prepend('<input type="hidden" id="error" value="show">');
</script>
That is using Jquery to manipulate / insert HTML Tags when the Document has NOT YET been loaded (by not using document.ready for the inserting into the DOM...
I am sanitizing an input field and manually getting and setting the caret position in the process. With some abstraction, here's the basic idea:
<input type="text" onkeyup"check(this)">
And javascript...
function check(element) {
var charPosition = getCaretPosition(element);
$(element).val( sanitize( $(element).val() ) );
setCa...
I'm trying to create a simple portfolio page. I have a list of thumbs and an image. When you click on a thumb, the image will change.
When a thumbnail is clicked, I'd like to have the image fade out, wait until the image is loaded, then fade back in. The problem I have right now is that some of the images are pretty big, so it fades ou...
I am using mod_rewrite to remap the URLs in my website in the following format:
http://www.mydomain.com/health/54856
http://www.mydomain.com/economy/strategy/911025/
http://www.mydomain.com/tags/obama/new
The problem is that I am making AJAX calls to a file: http://www.mydomain.com/login.php
And I don't want to write the...
Hi all, i have this code:
$('.access a').toggle(function() {
$('link').attr('href', 'styles/accessstyles.css');
$('body').css('font-size', '16px');
}, function() {
$('link').attr('href', 'styles/styles.css');
$('body').css('font-size', text_sizes[text_current_size] + 'px');
});
It works fine. But how would i programmat...
I need to remove the following script from my page(ASP.NET 3.5), leaving all other scripts intact:
<script type="text/javascript">
//<![CDATA[
alert('Save Sucessful.');
</script>
Should be something like $('html').children('script').remove(':contains("alert")) but this exact syntax doesn't work.
...
I recently created a website and added some jQuery into it. However doing this makes IE8 display a white page. Whenever I remove the Javascript IE8 renders the site fine. I have tested locally as well as on the internet, the problem still persists.
This is my code to include my .js files:
<script type="text/javascript" src="jQuery/jQue...