jquery

Where is Visual Studio autocomplete for JQuery 1.4?

I can't find the Visual Studio autocomplete file for JQuery 1.4. Googling for jquery-1.4-vsdoc or jquery-1.4.min-vsdoc turns up nothing. ...

jQuery AJAX Redirection problem

Hello please consider this: On page A I have a link that takes you to page B when JS is off, but when JS is on, I want to replace content on current page with content from the page B. Pages A and B are in fact the same script that is able to tell AJAX calls from regular ones and serve the content appropriately. Everything works fine, ...

Can't access $_SESSION variable in PHP called from Flash

I'm having difficulty accessing a $_SESSION variable. I have session_start() at the beginning of the file. I'm using jQuery uploadify and it calls a php backend file, which can't access $_SESSION variables, although other files outside could. Could it have something to do with the way that flash (jquery uploadify) is calling the php? ...

jquery drag & drop table rows ( reordering )

hey im using jquery drag & drop function to move table rows up and down . the only problem is in saving data and getting the position of each row while im using php to show table rows , dont know how to get each table row position value . the script can only find first row position value ...

Jquery and Dialog Validation

I am having one hell of a time trying to get this to work, no javascript errors what so ever. Its just going right to the action. Here is the javascript I am using $(function(){ $("form[name=form1]").submit(function(){ return $("#dialog").dialog({ autoOpen:false, bgiframe: true, ...

Getting image width and height of an image being used as a CSS background.

Hello all, i'm building a jquery slideshow carousel for a theatre site, it's being used to display the titles and the associated photos of the 5 most recent shows at the theatre. The shows, and the URLs of the photos that have been uploaded for them, are loaded in from a database, and inserted into the structure below: <div id="slidesho...

Javascript: How to intercept window.location change

Hi, I need a way to attach some pre-processing to each assignment of the window.location. Is there a way to do this. I basically need to serialize some info, that will be used in the new location. ...

generalist book for web2.0

I need to learn web20 frontend. Javascript, jquery, dom, ajax, css. A quick search reveals the best JS books which don't cover all of my goals. From reading the table of contents: JavaScript-Good-Parts-Douglas-Crockford is the defacto JS intro book, but covers syntax only, no intermediate web JavaScript-Definitive-Guide-David-Flanagan...

What is a good jQuery timePicker?

What is a good jQuery timePicker? ...

How to change this from prototype to jquery?

I want to convert the following prototype js to jquery js. Can anyone help me please? Thanks in advance. window.onload = function () { new Ajax.Autocompleter("function_name", "autocomplete_choices", base_url+"application/ajaxsearch/", {}); $('function_search_form').onsubmit = function () { inline_results(); ...

jQuery: integrating Galleria with SmoothDivScroll plugin

hi, hoping someone can help here.. this is really a long-shot... and probably a dumb question. I have been working on an integration of SmoothScrollDiv with Galleria.. - to scroll the thumbnails. demo of my code here: http://test.kinkylemon.nl/sym/galleria/demo3.htm I have a problem that when the browser window is resized, SmoothScrol...

Select Form Array Value Using JQuery

Hello, I have a form that is being generated on the fly in PHP using the below ($theFeatures is a multidimensional array): <?php foreach($theFeatures as $theKey => $theValues) { ?> <input type="text" value="<?php echo $theValues['Key']; ?>" name="theFeatures[<?php echo $theKey; ?>]['Key']" size="6" /> <input type="text" value=...

Pagination numbers not updating properly

Hey, I'm trying to get my pagination numbers to update when the user uses the filter options at the side of the page. Here is what I'm working on: Click Here The problem is, when you click the color - Yellow - you should only get 1 result(Giant) and only 1 page number should display. however the pagination is not updating properly and ...

jQuery: form.submit(fn) does not work with Asp.net?

I am trying to attach an event handler to form.submit on asp.net rendered pages with no success. I want to intercept every postback, and doc. says that I should be able. Am I doing something wrong? $(document).ready(function() { $("form").submit(function() { alert('Form submit'); debugger; }); }); ...

Exception message to UI

Hello, I open a jQuery dialog, in this box I do a save/cancel. To Save, I call my controller, make some validation, save or throw Exception (MyPersonalException). If there is exception, I return an another View (the "MessageError" view) to display in the popup. I just want to see in the modal box the message available in "MyPersonalExce...

JSON to PHP, then foreach?

I send a valid JSON string to my PHP page from jQueryscript: var data = '{ "data":[ { "id":"12", "checked":"true" },{ "id":"4", "checked":"false" },{ "id":"33", "checked":"false" } ] }'; $.post ("page.php", { data_input:data }, function (data) { // code }); Once I get the data in my PHP page, I parse it ...

How to start up with jQuery in ASP.Net MVC?

I know C# really well, just started playing with ASP.Net MVC a few weeks ago, and almost zero javascript. I saw some people here recomending jQuery, so I'll try that out. What resources/tutorial should I start with? ...

jquery setInverval not working

HTML: <div id="coin1"></div> JS: $(document).ready(function(){ function changeImage(){ if($("#coin1").css("display") == "none"){ $("#coin1").fadeIn("slow"); }else{ $("#coin1").fadeOut("slow"); } }; setInterval ( "changeImage()", 2000 ); }); I can't get this to work... If I just do changeImage(); it works fi...

perform search and result-action on autocomplete-input on button-click

I use autocomplete (http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/) for jQuery and everything works fine. If I type some letters there are suggestions I can choose from and on TAB or RETURN it performs the function defined with result(). But I know it won't last some days and a consumer of this form won't press TAB or E...

jQuery with json

Hi there people, I need help urgently please, my issue is this: I have an MVC app that does a lot of work with jquery ajax (post), to retreive customer info and load it to the web page. The problem is, that on internet explorer 7, when I click twice a link that retreives the info via ajax ($.post or $.getJSON), the info doesn't refresh;...