jquery

Jquery image scroll problem

Hi Im using a "image scroll jquery," script I found via Google (1st or 2nd result "nettuts) and I have hacked together the following.... http://techavid.com/imageScroller/imageScroller.html When the image scroll begins it starts all the way to the right. Upon page load the aston martin image (1st image seen) should start the scroll o...

jQuery UI DatePicker - Disable all days except last day of month

I'm trying to use the jquery UI datepicker to show a calendar with only the last day of the month selectable. I've successfully used the beforeShowDay event to disable days of the week but not sure how I'd use this to disable everything but the last day of the month. ...

Width, padding giving auto in IE7

Hi all, I am trying to coding for padding, width based on previousSibbling Div id. Based On Prev Div id's Width, Padding, I will calculate current width,padding. It is working in Mozilla. But IE PrevSibbling Div's Width, padding coming as "auto" and i tried to add 10px to width. But it is not working. Div functionality working as...

Document.getElementById(update[0]) is null

I'm getting this error when submitting, it does properly send but the user is not notified that it sent. document.getElementById(update[0]) is null <script language="javascript"> function createRequestObject() { var ro; var browser = navigator.appName; if(browser == "Microsoft Internet Explorer"){ ro = new ActiveXObject("Microsof...

jquery ajax form success callback not being called

I'm trying to upload a file using "AJAX", process data in the file and then return some of that data to the UI so I can dynamically update the screen. I'm using the JQuery Ajax Form Plugin, jquery.form.js found at http://jquery.malsup.com/form/ for the javascript and using Django on the back end. The form is being submitted and the proc...

How can i move my jquery modal to here and there

i create a modal , which i cannot move, it showing somewhere i specify the position. I want to move the dialog modal. is there any parameter for that. ...

Where to download Jquery GalleryView New Version? I cant find it!

Very simple question! ha? I can't download the latest version of GalleryView plugin.I have version 1.1 but it is so old. the plugin page in jquery website: http://plugins.jquery.com/project/galleryview and the plugin homepage is here: http://spaceforaname.com/galleryview ...

jquery click handler inside frame isn't working

I can't make the following code attach a click handler to the elements on the "main" frame. This code is in the frameset definition. <!-- #include file ="..\include\AuthenticationCheck.asp" --> <!-- #include file ="..\include\serverValidate.asp" --> <html> <head> <meta NAME="GENERATOR" Content="Microsoft Visual InterDev 1.0"> <meta ...

jquery, uploadify send data

Hi, i have uploadify script: <input type = "text" id = "file_name" name = "file_name" value = "" /> <div class="upload"> <input id="fileInput2" name="fileInput2" type="file" /> </div> <script type="text/javascript"> $(document).ready(function(){ $("#file...

Unable to fire jQuery change() event on selectlist from WatiN

I have a select box <select id="myselectbox"> <option value='a'>First option</option> <option value='b'>Second option</option> </select> And jquery $('#myselectbox').change(function() { ... }); And a WatiN test SelectList list = Browser.SelectList(Find.ById("myselectbox")); list.Select("First option"); In IE, thi...

Facebook Connect Cookie/Session issue

Hi Folks I am using the following 2 API's to create a facebook connect but having issues with the sessions being picked up the the PHP SDK. I have downloaded the latest facebook-connect-js & facebook-php-sdk Here is my initial FB.init connect using the JS no problem ie. <script> // initialize the library with the API key FB.init({...

JSON array data retrievability

Hello all, I have another JSON array related question. How would I access the data stored under "when": in this array if I am importing it with JQuery with a statement like this: function getJSON() { $.getJSON('nearby.json', function(data) { console.log(data.when); }); } Here is a snippet from my JSON: ...

Load ASP.Net User Controls via jQuery AJAX

I have mini modules(think iGoogle) that are currently loaded via the page calling LoadUserControl method and loading that control into PlaceHolders. I need to switch that implementation to loading the controls through a jQuery AJAX request. The problem currently lies in the fact that when I perform an AJAX Get, I can load the modules by ...

Wait for AJAX Call (POST) to Finish

I am using the jQuery UI tabs where each tab has a different form on it. After the user enters various pieces of data, they submit the entire set of tabs so that each tab posts to the server asynchronously. This works well, and I have no problems here. However, where I run into a problem is that, the last form that I post has to happen ...

set attribute of xml node to a variable

I am trying to get the value of an attribute of an XML node and set it as a variable using JQuery. Is this possible? <DataContainer> <Customers> <Customer customerId="7366" customerName="Boardwalk Audi" url="" address="5930 West Plano Pkwy" city="Plano" state="Texas" zipCode="75093" latitude="33.01...

How to create html table by reading column values from an XMLfile

I have to create a table in an html file by reading column names from an XML file. I am using java, Wicket, JQuery etc..(No hard coding of column names in html file) any suggestions? ...

Avoid opening the same page twice

Hello everybody, I'm trying to find a solution to this problem: I have a page on a php application that can't be opened more than once to avoid session overwrite. I'm spending a lot of time without finding any solution! The last one I tried is to use the jquery "load" and "unload" events on the window. It works fine if I open the same p...

File Uploading - Limit File Types in "File Upload" Window

Hi, I have a question regarding file uploading, I need to limit file types, but I like to do it in the “File Upload” window, so the user can’t even see files that are not allowed for uploading, I like to do it in js or jquery. I know it’s possible for example, uploadify plugin does this, but I don’t want to use it for a number of reason...

JQuery dropdown menu using slideup and slidedown on hover is jumpy

Hi, I've made a very simple dropdown menu using jQuery slideup and slidedown for the functions - but it gets very jumpy (I'm using Firefox 3.6.8) if the mouse is moved to quickly over it, or if the mouse is held on one of the submenu items. I've made a working example at the following link: http://jsfiddle.net/jUraw/19/ Without the ...

Form text display

I am making a multi-page form using http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/. I want to include a confirmation page at the end that shows the other information (name, e-mail, etc.) as it was typed in without reloading the page. In essence, I want to show what the user typed in on another part of the page. ...