jquery

Parsing through XML returned by web service with jQuery

I'm trying to parse an XML file returned by a webservice with jQuery. Here is the code I have set up, but nothing seems to happen. $.ajax({ type: 'GET', url: 'http://www.sample.com/webservice', dataType: 'xml', success: function(xml){ console.log(xml); $(xml).find('movies').each(function(){ $(this).find('movie').each(function...

JQuery mouseout timeout

Similar problems have been dealt with before but I believe mine's slightly different owing to the use of the bind() function. Anyhow... $('.overlay').bind("mouseenter",function(){ $(this).fadeTo('slow', 0); }).bind("mouseleave",function(){ setTimeout(function() { $(this).fadeTo('slow', 1); }, 2000); }); I want to fad...

pass the e.target to a function thats called when element is clicked

I am trying to pass the clicked event (event.target) to a function inside a function that is being called when clicked how would i do this? function showGrid(){ updateTag() } function updateTag(){ /*how do i get the event.target passed here? */ alert(e.target) } $(".gridViewIcon").click(function(e) { showGrid(); }...

.NET MVC Using Javascript to Add Textbox to View on button click

I've tried searching around but there isn't something that is a fairly concrete example of this, and my 'jQuery-Foo' Is rather poor. Here's what I'm trying to accomplish: User is presented with a form in which they enter user data (first/last/address, etc). When it comes time to add a phone number, they need to be able to add as many...

JQuery Rounded Corners with Menu

I'd like to create a dropdown menu with rounded corners without using images. I tried combining the suckerfish menu plugin with a number of the JQuery rounded corners plugins, which mostly worked fine in Firefox, but looked terrible in IE. Does anybody have an easy combination of plug-ins that will work with both IE and Firefox? ...

IE not working with jQuery .show()

I built some simple tabs, which when clicked, show a hidden div. Very simple. All works well, except in IE. For some reason, even though I am using the jQuery .show() function, it won't set the hidden div to display:block, but just leaves it hidden, and it is very frustrating. Example Page: http://www.puc.edu/alumni/give-puc jQuery ...

Find file size with jQuery

I was wondering if there was a way to use jQuery to find out the file size for a PDF that i'm linking to a webpage. I want to make it so that on hovering over the download link, a modal box pops up saying the file size of the PDF. I can do the second bit, the only thing i'd like to know is how to find out the file size. I dont know if ...

IE right property off page - vertical scrolling

Hey, I am using jQuery at this page to slide out the couch to the right, it works fine in FF as you can see, but in IE 6 you have vertical scrolling. I had numerous other IE issues, but I got rid of most of them, by going through my CSS again and tightening up the lose ends. http://www.catonthecouchproductions.com/new/ I have tried m...

JQuery custom event in ASP.Net User Control

I have an ASP.Net user control that contains some checkboxes, and I want to use JQuery to raise an event from the user control when one of the checkboxes is clicked. Here is the JQuery code in the user control where I'm trying to raise the event: $(document).ready(function() { $(':checkbox').click(function(){ ...

Shift + mouseover with jQuery

I'm trying to detect whether the shift key is being pressed while the cursor is moved over a particular element. The function fires, but only after I click on another element first. Is there some way to work around this? I've tried setting focus to both the document and element, and tried creating a pseudo-click function but so far nothi...

JQuery: How to make Show/Hide only works same link name?

I have several comments on a site depending the post and I only want to show/hide the selected comments. I'm having this issue and trying to figure out. When I click on one option, the show/hide works fine but it's also hide or show on ANY others contents BELOW of it. I want the trigger to be able to show/hide ONLY one comment that have ...

DIV behave like an IFRAME & load url using ajax

DIV behave like an IFRAME & load url using ajax for a web application having many forms/web pages loading each form/webpages dynamically ...

Datepicker of Jquery UI need help

Hi, I need help adding the jquery date picker to my existing code, but not reconstructing the whole HTML file. my code, <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="Con...

How to find an element by classname in another cell in a table row?

From the change event of a textbox in a td, I want to find a div whose classname = 'licenseStatus' in another cell within the row in which the textbox resides but can't seem to figure it out... $('#gridRequestedApps .xxxAppName').change(function() { var licenseOutputCell = $(this).parent('tr').find(".licenseStatus"); alert(license...

How could I attach a piece of GET/POST data to every single request coming into the server for logged in users?

I want to have an input element at the to of my webpage that contains some global settings for a logged in user. How could I attach this piece of data to every single GET/POST and AJAX request that comes in from my web application? I wanted to tack this onto an existing site that has a lot of code already. Cookies aren't what I'm look...

jquery tablesorter plugin - retain alternative row colors

i took an html table that i am applying alternative row colors and i just added jquery table sorter on it so users can sort the table. the issue is that the alternative row colors are all messed up now as (based on the sorting) there are multiple rows with the same backcolor . . is there anyway to reset the alternative row color with j...

How to generate smooth flow pager with jQuery?

For these page numbers below: 1 2 3 4 5 6 When 6 is clicked,7 should come out from right side,and 1 should hide into left,so on. How to create such kind of effect with jQuery? ...

Using JQury To Toggle Div in Next Row

I'm trying to toggle the build_files_toggle classed div in the next row when you click the build_files_toggld classed link above it. I can get the next row to collapse with $(this).parent().parent().next().slideToggle(30), but when I add the '.build_files_toggle' it doesn't work... and it's killing me. I even tried $(this).parent().pa...

JQuery Validator Plugin Asp.Net call server method

I use the JQuery Validation plugin to validate a form (http://docs.jquery.com/Plugins/Validation/) For example, I can validate an email in a form. What I would like to do is to validate if the username chosen already exists. So, I need to call a server method that query the database. How can I do that ? UPDATE From balexandre answer,...

How to change behavior of <a href="somewhere.html" id="link"> with jQuery?

For those with javascript enabled,click on them should do OnClick() For those with javascript disabled,click on them should just go to somewhere.html, Suppose only $('#link') is accessible,how to do that? ...