Best data grid for php based application using ajax
What is the best data grid for php based application using ajax? Any reference please? ...
What is the best data grid for php based application using ajax? Any reference please? ...
Hi, I'm working on delving into more complex WordPress theme options pages. Right now, I need to do a couple things: Create a tabbed interface for the theme options page to tab between different types of options Create a jQuery-driven header image selector. The default header selector (i.e. the one included in twentyten) is insufficie...
I have 9 select boxes on my page containing lots of subcategories for businesses. I require the user to select an option from only 1 of the 9 selects. To make the user experience better I hide all of the select boxes with CSS and generate a dynamic select box of categories. When a category is selected from the generated dropdown, the s...
Hello, I want, in my website, to present my employees, and i want to do it like a slideshow or similar using jQuery. You know, example i have 6 emplpoyees photo, and when i hover them, there is a little presentation with a bigger photo of them. I completely lost the name of the plugin i found months ago (if you know others jquery pl...
I am using JQuery & JSON (POST) to call webmethod. However I can call only webmethod located at aspx file but not in asmx file Below are sample codes CustomValidate.asmx Imports System.Web.Services Imports System.Web.Services.Protocols Imports System.ComponentModel Public Class CustomValidate Inherits System.Web.Services.WebService ...
I have a mild preference in solving this in pure JS, but if the jQuery version is simpler, then jQuery is fine too. Effectively the situation is like this <span id="thisone"> The info I want <span id="notthisone"> I don't want any of this nonsense </span> </span> I effectively want to get The info I want but not The info I want I...
I know it's an old JQuery library, but I am still using Thickbox 3.1 throughout my site. On Chrome and Safari, when you click a thickbox link, the iframed page pops up, but there is no preloader image. It goes directly to the page and waits on the popup until it loads. This becomes a problem when the popup is loading a lot of content and...
Ive made a 'hover with sticky click' jquery script for my web portfolio which works in Chrome, Opera, Firefox, and Safari - but I'm still having some problems with IE. I have 8 thumbnails that fade between 0.3 and 1 opacity on hover. When clicked it uses the index of the thumbnail to show the corresponding full size image. It also is li...
Hello, When I click on a image, in the below div <img src='uploads/<? echo $dir; ?>/<? echo $file; ?>/<? echo $file1; ?>' width='100px' height='100px' style='margin-left:5px; margin-bottom:5px; border:#fff solid 2px;' id='<? echo $i; ?>' class="ind_img"> using this jquery code $('.ind_img').bind('click',function(f){ var img_large =...
Hi, I'm new to jquery and i'm trying to find out if it's possible to create simple accordion without the arrow icon and without padding at all inside the accordion content. I want to use the whole content space, and it seems like jquery accordion widget auto create some padding as the width of the arrow icon. Thanks! Lior ...
Hi, I'm not sure if this is actually possible but I would have thought it is. I am very new to jquery. What I am trying to do is nest two functions. Hide the target div load the new page into the div open up the div again This works if I place the initial slideToggle on its own but I want to make sure the page is loaded before openin...
Hello, I'm trying to get started with writing a jquery plugin, have been reading tutorials but am stuck at the beginning.. Here's what I have: (function($) { $.fn.testPlugin = function(options) { this.each(function() { alert($(this)); }); } })(jQuery); I'm calling it with: $('#id').testPlugin(); It doesn't...
I have been pulling out my hair on this topic. I have been searching google and could not find much to help me. I have this here: http://www.fissiondesigns.com/simon Works in FF and chrome, but can't get it to work on IE, keep getting an error 'object doesnt support this property or method'. I looked it up on google and couldn't find...
Okay, Now I have an unordered list here: <ul id="mycustomid"> <li><a href="url of Item A" title="sometitle">Item A</a> <ul class="children"> <li><a href="url of Child1 of A" title="sometitle">Child1 of A</a> <ul class="children"> <li><a href="url of Grandchild of A" title="sometitle...
Hi, as so many other people I am looking for a carousel for my homepage. I already had a look at the market. My favorite would be a mix of several existings ones. And, if possible, it should be based on jQuery, since I am using that already. Some good carousels are based on mootools, though. So, what do I like? noobSlide is nice. P...
Could you recommend some lightweight jQuery plugin to detect if fields specified by selector have changed? E.g. like this one on SO, showing confirmation dialog when I want to reload page during post edition. ...
I have a function called goRight() which does some stuff when I click a div called "goright". I want to make it so that when I hover over the div "goright" it will call the function repeatedly (with a small delay) for as long as I'm hovering, and then do nothing and stop once i move the mouse away. I have experimented with setInterval ...
OK, well, this has got to be something really dumb. I've got a little JSP app. I want to add a date picker. I downloaded the jQuery UI bundle. If I point chrome at the index.html that it gives me as a demo, all is well. When I move the pieces into my webapp, not so good. The chrome console shows two things: Resource interpreted as sc...
I have a jquery based slider on the page. This slider calls a function to update a variable each time a value changes and does a few other things. This means that the function is called too often when the slider handle is being dragged. And this is causing performance issues. Current Psudo: Slider.onSlide: trigger function ValueChange(...
I'm calling a dialog that says "Please wait while the page is loading.." from differnt functions. The dialog opens up fine when called one function(working function) but doesn't open when called from other functions(clearAll) on the same page. The other function executes fine but just the dialog doesn't appear. Any ideas whats going wro...