jquery

jQuery live event on iPad...why doesn't it work?

I'm using jQuery to develop webapps on the iPad and it seems the jQuery live event doesn't work... This was the case when I was working with the SDK iPad emulator and now that I have the iPad to work on, its still the same (I was hoping it was an emulator fault). Running the same code on a web kit build works fine. I'm just wondering if...

jQuery gallery doesn't work in IE.. but DOES after refresh?

I am using jquery galleria like so: $(document).ready(function() { Galleria.loadTheme('js/galleria/themes/classic/galleria.classic.js'); $('#galleria').galleria({ image_crop: true, /*transition: 'fade',*/ data_config: function(img) { return { description: $(img).next('p').html(...

jquery get statement

Hi, I am trying to use the jquery get statement: $.get(urlAddress+".asmx", { question: quest }, function(data){ alert("Data Loaded: " + data); }); I don't know how to specify the method and how to get data The HTTP headers are giving a 200 message (Ok) but I'm not getting any data back. Any help please? ...

Display dropdown list with options in multiple columns

Is there a way to display an HTML dropdown list with options in multiple columns? I do not want multiple columns with one row of data, I want 3 rows of selectable options. Is this possible via either .NET or jQuery? ...

Javascript Helper Library

Hello all, I've been assigned a project to create a js library that serves as a starting template for all of my company's websites. The idea is to include some standard things that we do so that we aren't reinventing the wheel every time. I've made a good bit of headway thus far, but I cant help but feel like I could be organizing thi...

MediaWiki: getting content only

HI all, I'm building web applications with Python/Pylons/jQuery and I've got a help system implemented, but not populated. Each application "page" has a Help link in the footer than open a ColorBox popup with a specific URL to populate it. I'd like to use MediaWiki to supply the Help content, but I don't want the whole MediaWiki interfa...

jQuery tools date time picker

Hi everyone, can anyone recommend me some jQuery tools date time picker, on official jQuery tools site there is only date picker but I am looking for plugin that has time extension. Thanks a lot. ...

Expanding jqgrid subgrid

I have a jqgrid that has a subgrid. How can I expand the subgrid without having to click on the plus sign? I came across $("#jqgrid_id").expandSubGridRow(rowId); but am unsure which rowId to use to expand the subgrid. Thanks. ...

how to get live results with jquery?

i make different queries with php and jquery and get the results with .ajax() when all queries return their values. what i want to do is to get those values as soon as they are ready. now user has to wait until all the queries are done, but the first query returns its value 30 seconds before the second one, so i dont want the user to wai...

jQuery Cycle - IE not loads the image at once (blinking occurs)

Hello, I'm having problem with jQuery Cycle plugin in IE8 (and other IEs as well) I have 3 slides which contains Title, Description + Image. The problem is that in IE8 the image is "blinking" / not loading at once (the bottom is cut off for a while is it displayed fully). Before I had problem with the white BG under the slider, but I...

show/hide checkbox based on select option value

How to show/hide a checkbox based on select option value? I want to show a checkbox based on a single value in select option and want to hide it when other values are selected. I am trying for jquery solution. $('#abcselect').change(function(){$('#unknownlicense').toggle($(this).val() == 'first')}); ...

What's wrong with my HTML/jQuery toggle script?

I have this function in a script in the header (generated by Fireworks, it works): function MM_swapImage() { //v3.0 var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3) if ((x=MM_findObj(a[i]))!=null){ document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; ...

Is it possible to start a colorbox based on a specified index?

I would like to be able to pass in the index of the image I want colorbox to start on when it opens. So if the user clicks on image 8 of 12 I still want the group to start in the lightbox on image 3. Is this possible? ...

how do i load thousands of rows in my asp.net mvc project from database into slickgrid?

All the examples except for the Ajax example creates random values with javascript. What is the standard way to load from database? I don't necessarily need to load using Ajax but i don't think i want to generate each value and write it out in the html or is that how it has to be done? ...

hide jquery facebox modal manually...

I used my custom close button on my facebox modal to close it... It works fine (ie) it closes but it appends to the bottom of the page after i click the close button... <a onclick="$.facebox.close();" href="javascript:void(0);" class="close"> <img alt="Close the popup" src="images/close.png" title="close" class="close_image" />...

jQuery:Something fishy about my URL?

The following URI works in my browser (getting back the intended xml file): http://ipaddress:port/server/gate?Command=GET%26info But when I write the following to work with jQuery, it doesn't. The response is 200 OK but I get a blank XML file. $(document).ready(function() { $.ajax({ type: "GET", url...

jQuery click on li with nested ul

I have a list within lists. When a user clicks on a list item (<li>), I want the nested <ul> to show up. Before I started adding the nested lists, I just had it where clicking a list item would run a function. Now, clicking any of the nested lists also runs that function. Which makes sense, since they're part of the list item. Besides ...

Save Checkbox State and Update Database

Hello, I am stucked with an idea I want to implement into one of my projects, and I need some help from the best. :) What I have In the first image I pull some info from my DB and display that info and also a button do Edit/Remove that Even and a Checkbox that should be checked in case of the Event is finished/done. In the second...

Is this a valid jquery statement?

Can i apply style like this, $('#aspnetForm').append($('#facebox .content').html().css({ 'display': 'none' })); but it didnt work... EDIT: i am trying to use jquery facebox in asp.net.. i am having issues with the close button.. http://stackoverflow.com/questions/3346172/hide-jquery-facebox-modal-manually ...

$.post in json format using a variable to store the json string?

I need to post 60 inputs. I have built up the json string and stored it in a variable. But unfortunately the following code doesnt work: $.post("process_form.php", my_var); my_var contains a json string in the format: { starta:'1', currenta:'5', finisha:'2', startb:'1', currentb:'5', finishb:'2', startc:'1', currentc:'5', finishc:'2...