• How to update part of a table.

    Hello guys, I have a table with some orders that are updated each five minutes using JQuery $.Ajax, but everytime the whole table is updated with all orders while I just wanted to update the new rows. Someone knows how can I do that? I just need a help with the logic, the code I think I can develop after. Thanks!
  • cancel events

    After you have declared an event (is this called creating an event handler) in jquery ie $(object).click(dothis)   is it possible to stop that event handler.
  • video tag DOM events problem

    i am trying to use the DOM events for the video tag (html5 video) i am using the events listed here http://www.w3schools.com/tags/ref_av_dom.asp yet no matter which event i use the code runs when i load the page not when the event is triggered this is my code   <script> document.getElementById('vidz').volumechange() = hollow(); function hollow(){  alert("test"); } </script>   no matter which event i use in place of volumechange() i get the same problem i have also tried using volumechange() without
  • What does this mean? "transition performance can be poor on upgraded devices"

    So I am looking at the docs for 1.2 and I see on the A grade devices about the transitions etc, anyhow under android 4.0 I see this note "transition performance can be poor on upgradeddevices" but I am not sure what this means?
  • menubar widget

    The current stable version of jQ-UI doesn't include the menubar widget. Is there a dev version available with the menubar widget that is compatible with jQ 1.8.2?
  • Maps Not being displayed in Internet Explorer

    Hello, Any idea why the map is not being displayed in Internet Explorer but works fine in Firefox and Chrome? http://www.gcprive.com/ai1ec_event/club-test/?instance_id=32 many thanks, Andy
  • how to make parent link active

    Howdy,   I'd like to use the jQuery UI menu or accordion AND have the parent node open an a href when selected in addition to perform its other function of showing its children/nested links.   I'm using the following code, but realize I probably need to configure something in the jquery-ui.js file.   <!doctype html> <html lang="en">         <head>         <meta charset="utf-8" />         <title>jQuery UI Accordion - Default functionality</title>         <link rel="stylesheet"         href="http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css"
  • cycle php and featured products

    hello, i have a website that had an admin login panel that i can select which cars are featured by ticking a check box in the admin panel. at present, the featured cars are static, and if i have four cars featured, it looks untidy. cue the cycle plugin!! (if i new how to use it!!) heres my code : <?php  session_start();      include_once "./admin/global.php";     if ( $sort ) {         $ses_sort = $sort;     }            if ( empty($sort) && empty($ses_sort)) {         $ses_sort = $site."_motor.title";
  • Enable or disable a menu item

    Hello everybody, I need help to implement a jquery function in my site to enable or disable a menu item from the control panel. The page that will be enable or disable it depends of the director of the school at the end of the school year. Till that period it will be disabled, when they start the polls at the end of year, the administrator of the site will enable that page from the control panel. Please, can someone helps me? Thanks in advance. Tegatti
  • ajax-json wcf rest service did not get data on mozilla browser

    Hi, I am developing application which consume wcf rest service via ajax and json. I am getting result when I use Internet explore but for other browse like Mozilla and chrome it did not give any result. Please help. Thanks, Pramod Following is the code: <script src="js/JSon.js" type="text/javascript"></script> <script src="js/jquery-1.6.2.min.js" type="text/javascript"></script> <script src="js/jquery.js" type="text/javascript"></script> function fillcategory() { var GetCategoryURl = "http://localhost:4444/Service1.svc/GetCategory"
  • How would i Valiadate Datepicker is empty

    My date picker is joined into my Contact form on pressing the Submit button all fields on the form are validated ok. how would i validate,,,,,  that a date as been selected and not submitted with an empty field. below is my code <!-- Start of datepicker -->   <script>     $(document).ready(function()      {         $("#datepicker").datepicker();      });     </script>       <!--  $(selector).datepick({dateFormat: 'yyyy-mm-dd'});  for my example -->     <script>          $(function() {           
  • Has anyone found a workaround for issue 4113?

    https://github.com/jquery/jquery-mobile/issues/4113 Here's the demonstrated behavior on JQM 1.2.0: http://jsfiddle.net/6ghtb/6/show/ Just put focus on Label 10 and scroll down.  Has anyone found a fix/workaround for this?
  • Relocate and resize web links when using zoom in and out.

    This is a flipbook I have the following code that supposed to relocate the links when page change size or orientation on the iPad. I using ajax to an array which get the links. The links write to the page and the green overlay shows where the links are. First images is what happens when use the code below. I need to adjust the links over -25 and 0 this what I am getting all links move and overlap each other. If you look at the second image you will see the original links location. I need for it move
  • Page Transition Queue

    Currently multiple link clicks are queued and fired sequentially, but i want to disable this behavior. So, how do i clear the page transition queue before the following function is executed:       function releasePageTransitionLock() {         isPageTransitioning = false;         if ( pageTransitionQueue.length > 0 ) {             $.mobile.changePage.apply( null, pageTransitionQueue.pop() );         }     }
  • Popup question

    Hi, popup is simple is to use. <a href="#popupBasic" data-rel="popup">Open Popup</a> <div data-role="popup" id="popupBasic"> <p>This is a completely basic popup, no options set.<p> </div> What if u have a list view and many record in there. imagine u have like. sale/01_000001_10 sale/01_000002_20 sale/01_000002_30 links like this and when one of them cliked u want to call a link looking like this. sale/01_000001_10/confirm sale/01_000002_20/confirm sale/01_000002_30/confirm do you have to create
  • using jquery

    Hello, I want to know how to use jquery with in the asp.net. Please help me. I tried but i cant. Initially i want to pul jquery message box with asp.net for confirm and messages. Thanks, Chandana
  • Ajax Simple File Upload

    I'm actually new on jquery ajax. i just wanna ask a little idea about how to create simple file upload (with form) using ajax. i tried using this code: //form html <p id="status"></p> <form id="form1" enctype="multipart/formdata"> <input type="file" id="photo" name="photo" /> <input type="submit" id="save" name="save" value="Upload" /> </form> //php file if($_POST){ $name = $_POST['photo']['name']; $tmp = $_POST['photo']['tmp_name']; $path = "images/".basename(name); if(move_uploaded_file($tmp,$path)){
  • how to solve CORS when calling other domain

    I am trying to call other domain(such as my web service running on 8080 and jquery program(index.html) running on 8084),that getting the cross domain problem so i found solution from our forum to implement $.support.CORS = true; crossDomain:'true', even my webservice not calling,in my firebug am getting the following   OPTIONS http://10.163.14.56:9000/customerservice/HashValue [HTTP/1.1 200 OK 17ms] but i have set request type is 'POST',when i am using header,it is changed as 'OPTIONS' So please
  • Coming soon splitview official??

    Hi!  Splitview official in jQuery mobile 1.2.1??? 
  • Single solution for IPad,Mobiles and Desktop using ASP.Net MVC4 ,Jquery Mobile and HTML5

    Hi, I'm looking out for a solution that can be used from desktop,mobile and IPad. Here I want to use single solution with different presentation for all 3 devices. After searching I come to know that this can be achieved by using ASP.Net MVC4 ,Jquery Mobile and HTML5. Here I want to know following: 1.What all software I require to install to start on ASP.Net MVC4 ,Jquery Mobile and HTML5? 2.How much HTML 5 is involved in this solution?Is it required or alone JQuery Mobile can solve the purpose? 3.What
  • static boxes in animation

    hi all  thanks to popnoodles i can change the div tags size now i would liketo implemet 2 static boxes in the animation   maybe anyone could help me there  http://jsfiddle.net/yCY9y/175/ here are some boxes which are getting bigger by mouse over but now i want to implement 2 static boxes ( in each column one )  by static i mean boxes which dont change their size by mouse over but they are moved when an other box cahnges the size so that is is seen all the time  greetings fönig 
  • Problem with jQueryMobile Code

    Hey there, At first sorry for my bad English. I'm from Germany and i have a problem with jQueryMobile Code. This is my complete code. With Firebug there is no error. jsfiddle Code I don't know what to do. So I need your help. Emjay
  • Is this a jquery issue or css?

    Hello; I have a jquery slider that goes over everything! It is located in this page. Please click on Refine Search on right column and scroll down. As you can see the slider goes on top of header. Is this a jquery or css issue? How can I stop it? Thank you
  • jQuery and Event-Driven(?)

    Dear all, I don't know if what I want to do is related to event driven, so I expose my problem. I'm developing a web portal where people can query for metals in biology. The query results can be downloaded but the zip file creation keep a long time. I would that when an user click on download link, the file creation starts and the user can visit other pages. When the creation file is finished a message or the download box appears on the visiting user's page. Is it possible? If yes, how can do it?
  • Iterate through JSON Result

    Dear, How can iterate through this Json result: {"boqItemCodeMaps1":{"C4":["V41","V42","V43"],"C3":["V31","V32","V33"]}}
  • Ordered lists and their indexes

    I've got an ordered list that I'm looking to hide some of the list options but have their respective indexes (the number) stay the same. .hide() hides it just fine.... but then changes the numbers (goes from 1-7, say, to 1-6 rather than 1,2,4,5,6,7) I can get the desired effect by using css with `visibility: hidden`. but that leaves the space behind. Any ideas guys?
  • navbar button highlighted

    So I have the following navbar code: <div data-role="navbar">       <ul data-inset="true">             <li><a class="ui-btn-active ui-state-persist ui-btn-corner-tl">a</a></li>             <li><a>b</a></li>             <li><a class="ui-btn-corner-tr">c</a></li>       </ul> </div>This navbar is on a page inside a document with multiple pages.  So when I browse to the page with the navbar above on it, and click on the c tab for example, then press the back button, and enter this page again, the a and
  • <Div> scrolling event is not firing in IE 7 , IE 8 but it is working fine in IE9.

    Hi  I have div with ID ="mainListDiv". I need to run some code on client side in scrolling event of this div but scrolling event is firing only on IE 9 but not on IE 7 and IE8. Please help me to solve this problem. NOTE: .read() of div is working fine on all IE versions. Below is my code:- $('[id$=mainListDiv]').ready(function () {                     $('[id$=mainListDiv]').scroll(function () {                         //some code                         }                     });                 });
  • text box minimum value 1

    Hello; How can I force the minimum value of this text box to 0 ( or 1)? So when the user clicks on - (decrease sign), it doesn't go to negative value. "Nights" text box in the search filter bar. Thank you
  • Jquery multipage with django

    Hi, Using django with jquery populating links like. <a href="#popupItem{{ item|key:'ITEMNUM' }}" data-transition="pop"> and populating pages using. <div data-role="page" id="popupItem{{ item|key:'ITEMNUM' }}"> I cant get this multi pages working for me. Everything seems to be fine, produced links is looking like. /sale/detail/02_O1_00000036#popupItem10 and appropriate pages are created. if I copy and paste the source html into a seperate html file, it works fine. But then, produced links differs
  • Slideup Box with moving text

    Hey everyone, i started a couble of days ago using jQuery and I am actualy totaly impressed of what it can do :) At the moment i am look for a function that can do something like that I actualy know how to realize the slideshow itself, but dunno a function, that can open the boxes like displayed in the screenshot. :/ The text that is displayed left beside the arrows shoud slide up after clicking on that arrow field, get fat and some other content should apear in the now available free space. I would
  • JQuery Mobile Selected List Item

    How do I go about creating a listview with a selectable item as shown in this screen shot: http://awesomescreenshot.com/07di8jff8 Say I am starting with the following listview definition, what attribute am I missing to make it look and operate as what's highlighted in the screenshot?  I tried a combination of attributes in the online doc, but without much luck.  Any help is much appreciated. <ul data-role="listview" data-theme="d">     <li><a href="a.html">Option A</a></li>     <li><a href="b.html">Option
  • How to show loading with overlay

    I want to do some ajax stuff, and use $.mobile.showPageLoadingMsg when processing, how to show loading with overlay, I don't want to let user click the document when ajax happened.
  • Popup Question

    This is apropriate for this forum actually. Hi, popup is simple is to use. <a href="#popupBasic" data-rel="popup">Open Popup</a> <div data-role="popup" id="popupBasic"> <p>This is a completely basic popup, no options set.<p> </div> What if u have a list view and many record in there. imagine u have like. sale/01_000001_10 sale/01_000002_20 sale/01_000002_30 links like this and when one of them cliked u want to call a link looking like this. sale/01_000001_10/confirm sale/01_000002_20/confirm sale/01_000002_30/confirm
  • $.mobile.changePage = function( toPage, options ) { }) missing releasePageTransitionLock() at the end

    Hello guys, shouldn't there be also a  releasePageTransitionLock(); at the end of the function  $.mobile.changePage.  according to what I have tested here: http://stackoverflow.com/questions/12796742/mobile-changepage-not-working-with-phonegap-android-emulator there is missing or the variable isPageTransitioning could never get the false value.
  • Validation plug-in: How to customize a minimum check of multiple inputs

    I have a form where there can be 1 or many inputs (of the class ".amount-input") that all have to meet a minimum value.  Depending on another input, the minimum might be zero (0) or it might be one (1).   Plus, I'm using a numeric mask plug-in on my text boxes, so the numbers might have commas in them.  This is why the built-in "min" validation won't work, because the comma is seen as invalid.  Oddly enough, the "number" validation works fine if there's a comma.  So, I'm trying to create a custom
  • Linking multiple classes or ids to a single listener

    Hey guys, I was wondering if there was a way to link multiple classes to a single listener. Let me give a pseudo code example : $('.star1 .star2 .star3 .star4 .star5').mouseover(function (){              //do stuff }); something like that, or this $('.star1').$('.star2').$('.star3').$('.star4').$('.star5').mouseover(function (){             //do stuff }); I hope you understand what I mean. Thanks for the help in advance!
  • Update button appearance

    I'm creating a website using .net and use the built in ajax features. I have a label that holds a total for a list of bookmarks. When an add/remove bookmark event is triggered on the page the total is incremented/decremented automatically. What I'd like to do however is highlight the button for a period (or even make it flash) after an event is triggered so that its a little more obvious. At the most basic, change the colour for n secs then return back to original colour. I'm struggling to think
  • Querying JSON data

    Hi,  Is it possible to query JSON data using jquery selectors or is there any third party libraries/plugins to query JSON data. Linq kind of syntax or jquery selector syntax is fine. Truly appreciate your help. Thanks in advance. Ram
  • jPlayer not work on mobile

    plugin page: http://www.jplayer.org/demo page: http://goo.gl/lHPy3 Totally wok on desktop's browser, Chrome, Firefox, Safari, but not work on mobile's browser, neither Android chrome or iOS safari, anything wrong with the code?
  • Next Page

  • Announcements

  • The Basics of jQuery AJAX

    A step-by-step tutorial for those new to jQuery and wanting to use AJAX in their projects. Includes valuable information about troubleshooting using the console and understanding the request / response. http://jayblanchard.net/basics_of_jquery_ajax.html
  • jQuery Conference 2010: Boston Announcement

      The jQuery Project is very excited to announce the jQuery Conference 2010: Boston on October 16-17, 2010.  The conference will be held at the Hilton Boston Logan in Boston, Massachusetts.  The best part of this announcement is that Tickets are on sale now!  This venue is the largest that the project has worked with to date (Harvard Law School in ‘07, the MIT Stata Center in ‘08 and Microsoft New England Research Center in ‘09) and we expect to sell out very quickly. A brief synopsis of some of