• jquery slideshow plugin not working

    Hello, I'm using a plugin I found online, and it works fine on chrome and IE8 but not firefox. Can someone please tell me why? I've been trying to find answers online but to no avail. :( http://www.ellejin.com/lasarangem.html
  • way to get a remote web inspector on iOS 3 device?

    I have a button display bug with jQM 1.2 and iOS 3.1.3, which I've filed.  I'd really like to be able to look into the problem more, but I don't know of a way to get a WebKit web inspector on that old a device. I'd use Adobe Edge Inspect, but it only supports iOS 4, and the button bug doesn't happen there. Any ideas?
  • JQM pagination plugin

    Hi, I need to use various plugins, with jQuery 1.8.2… So when I use this jquery.mobile.pagination.js with a recent JQM 1.1.1 it's make an error on iOS Simulator but not on Firefox. Error arrive at last page with dragging event (on var $newActive). Demo using 1.0b2 http://filamentgroup.com/examples/jqm-pagination/demo/ How to fix this ? Make my own pagination function ? Wait for an JQM pagination update ?
  • Weird behavious in JQuery.ajax()

    The code below is part of an autocomplete input created using JQuery UI. But my question here is related to the JQuery-AJAX part only.     change: function(event, ui){     $.ajax({     type: "POST",     url: "includes/c_t_v_choices.php",     data: { filter: ui.item.value },     //dataType: "JSON",     }).done(function( msg ) {         c_t_v_choices = msg;         alert( "Data Saved: " + c_t_v_choices );         $("#c_t_v").autocomplete("option", "source", c_t_v_choices);     }); The last line in
  • No differences between latest RC and 1.2.0 final version?

    There are no differences between the latest RC and the 1.2.0 final version. Right?
  • Help with dock menu

    Hello friends, I am trying to apply this style dock menu, when I run the page the browser menu.html direct effect of the page works perfectly, but when it runs first to the effect of the index.html page menu working for someone ... might help. In this link follow the project files and detail'm beginner ... hahaha. http://www.mediafire.com/?nwk7s0xdtqbcho9 thank you
  • Jquery Post's response rendering click events in jsp page on submit. How to stop them

    Hello Users, I am using Jquery tabs and populating tab content dynamically. I have a huge form with bunch of user input fields. One of the requirement is i have to dynamically add the controls when the user click add more button ( eg:  adding user technical skills/ proficiency level in drop down and adding multiple of the same rows). This one i am doing on click event appending controls to existing div. At entire page level I have save and submit options. When the user click save/submit request goes
  • Jquery Mobile image slider

    anyone have code for a good image slider for jquery mobile?  
  • if and else

    hi guys i have 2 ids ON and OFF, both in html in the moment,  and i using css3 for show or ON or OFF, how can i apply jquery for if ON do something else do another thing? if i only using css3? i using exaclty this effect  http://dl.dropbox.com/u/391082/checkbox-ios.html
  • Hello World in asp.net not debugging

    Hi,   I'm just trying JQuery for the first time (be gentle with me :) ).   I have a form in ASP.NET with a simple html button: <script type="text/javascript" src="Scripts/setStatus.js"></script> <input id="Button1" type="button" value="button" />   My JQuery in Scripts/setStatus.js looks like this: $(document).ready(function () { var text = $("#Button1").toString.length; alert("Here"); });     When i set a breakpoint and try to debug, it never reaches any of my JQuery code.  When i run without debugging,
  • Text inconsistent alignment in buttons across browsers

    Hi, I have shown two browsers that display my text in buttons inconsistently. While initial times Chrome was my choice, now it seem it is not showing the text properly in my buttons.  The same is well displayed in other browser (Opera as in figure, or safari etc) I dont know where to check for this anomalies. you may check at this site http://guruttam.com/docs/gmindex.php regards SriKrish "Learning Continues"
  • document.ready() function confusion

    Hi. I am novice to JQuery and i am having difficulty understanding this concept. When we are talking about document.ready() function we say that $(document).ready(function() { //some code });  is equivalent to $(function() { //some code }); When we look at the jQuery documentation, something like this is written there. else if ( jQuery.isFunction( selector ) ) { return rootjQuery.ready( selector ); } This is what handles the part written above. I am not able to understand this. Please help clarifying
  • help understanding a return when its inside of a .each method

    The following .each() function is inside of another larger function. I am having a hard time knowing if the "return;" below, is even nessessary...   $('.something').each(function() {   aid = $(this); aid.x(-player.aid.speed, true); var aidposx = aid.x(); if(aidposx < 0) { aid.remove(); return; } });   If the point of "return' is to say "now its ok to remove aid", then how else can I write this? What if return; wasn't there, wouldn't aid.remove(); still execute? Do I really need it?? What is the point
  • some problems with UI dialog

    Rcently i am developing a small project with jquery, inside i used the existing UI dialog, but i found some problems during the development. 1. the dialog shows normal in firefox but abnormal in ie9, then debug it in ie9, found the global variable window got problem that attribute width and height is zero, i don't know the reason why occur such strange problem. 2. I used the tag iframe to display sub-screen, but inside the iframe the variable document & window is only available inside the iframe,
  • slider slidestop

    I have the following code... <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script> <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script> <script>     $(document).ready(function () { $( "slider-step" ).bind( "slidestop", function(event, ui) {                 alert("done");         });     }); </script> <label for="slider-step">Input slider:</label> <input type="range"
  • Clearling a List with jQuery Mobile - layout issue

    Hello there. I got the simple following function that will populate a DIV element with a list function populate() { var turma = Persistencia.getTurma(); var ct = turma.alunos.length; $("#listaAlunosChamados").remove(); //removes the UL if exists (i tested w/o it) $('#alunosChamados').html('<ul data-role="listview" id="listaAlunosChamados" class="listaAlunosChamados" data-inset="true">'); // creates the UL into the DIV #alunosChamados while(ct--) { // fills the list var aluno = turma.alunos[ct]; if(aluno.presente)
  • Multi Instance Plugin Issue

    Hey all, I'm in the process of writing a JQuery Plugin, and have ran into a bit of a snag. When I create multiple instances of a plugin, it always ends up returning the last instance that was created. Can any of you JQuery wizards help me out? Here is an example of the code that I'm using. I'm currently testing this in chrome. <html> <title>Sample</title> <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> <script type="text/javascript"
  • Reload page on deleting cookies

    Hi, I wonder how you reload a page, when you manually delete browser cookies using the browsers Ctrl + Shift + Del menu. Something like: $('window').bind('delete_cookie_event', function( e ) {       location.reload(); }); I'm have looked on the internet for a solution,  but I find nothing but pages on how to delete cookies using JS. Thanks in advance! Chirstophe
  • script is displaying as child node by mistake

    Hi I'm using jQuery plugin for a slideshow. It is working fine until I include it in XML DOM to g et Node Values. The script I'm using is adding on as a chlid node. See my demo here: http://geewebsolution.com/demo.html <code>    <script type="text/javascript">       function loadXMLDoc(XMLname)       //       {       var xmlDoc;       if (window.XMLHttpRequest)       {       xmlDoc=new window.XMLHttpRequest();       xmlDoc.open("GET",XMLname,false);       xmlDoc.send(" ");       return xmlDoc.responseXML;
  • Adding a row to a table dynamically inside another table

    Hi pals, I am new to jquery, especially this kind work.. Please help in my work. I need to insert a row onclick a button, 'add'. Inside that table I am having another table, which has options(three column) of the parent table.  And I am having another button called 'add options' which onclick I need to add a new row to the options table appropriate to that parent row. This is the screeshot of the actual. This is my HTML <STARTS HERE> <div id="fourthDynField" class="fieldType" style="font-family:
  • AJAX replaceWith using jQuery

    I have a page that has two forms on it.  Each form is a different way of filtering the results on the page.  The first form is a `collection_select`.  The second form is a `text_field_tag`.  Each submits to the same controller and returns data using `index.js.erb`.  Firebug shows that the Ajax call works for both of them and returns the proper results, however, only results that are returned from the `text_field_tag` form actually update the page.  It uses the same code in `index.js.erb` to return
  • Problems getting value from textbox that has been hidden

    Edit: Figured it out. Using .val() instead of .text() did the trick! I'm using jQuery in a SharePoint newform. In $(document).ready I hide a column/field (textbox) with the following code: $("input[title='myField']").parent().parent().parent().toggle(); Then, depending on a choice made in a different column/field (dropdown) I run the same code again to show the textbox. Furthermore, I have overridden the PreSaveAction function to do some custom validation. This is where I run into problems. If the
  • How to insert any html-php page to a #container by clicking a link button

    Well here goes: Say I have a home page it needs to be on display in the browser at all time, Even when I want to call in another page.  The correct place for the CLICKED-linked page is directed to the MAIN CONTAINER on the home page.   I've looked at many examples  but none seem to do this. And when I use jquery the page clicked in the menu shows up on a completely new page. It is supposed to show in the Container on the Home Page.   Also should my jquery code be inside the body tags or below the
  • unable to get text displayed on tab event, sorry for the laughable code, I am new to this!

    The Jquery:   $(document).ready(function(){     $("#interests").mouseEnter(function(){     $("#contint").show();   });   $("#interests").click(function(){     $("#contintf").show(500);   });   $("#interests").mouseLeave(function(){     $("#contintf").hide(500);    });   The HTML:   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">   <html>   <!--[if IE]>   <link type="text/css" rel="stylesheet" href="tabstyleie7plus.css" />   <![endif]-->     <link type="text/css" rel="stylesheet" href="tabstyle0921.css"
  • Slider image with import csv file

    how to make a javascript image slider with csv import ? please help me.... !!
  • JQuery Mobile and PHP

    Hello, I am using JQuery Mobile to create a web app, and I am also using PHP with it. Most of the PHP works, except for the PHP in the footers and buttons. What it is doing is making 6 buttons instead of 4, and there is little bits of PHP text everywhere in the page. Does anyone know how I can fix this? Here is some of the code: <div data-role="footer" data-position="fixed" data-fullscreen="false"> <div data-role="navbar"> <ul> <li><a href="#" data-icon="back" data-rel="back">Back</a></li> <!--<li><a
  • How to multiple select defined elements

    $('.class, #id') is the way we normally used to select multiple elements, but if we already defined the variable such as var $a = $('div.a'),       $b = $('#b'); Can I bind event on $a and $b at the same time?
  • jquery plugin - trying to change an elements width/background

    I'm using a jquery plugin to create an image slider with thumbnails underneath. My goal is to have the main image's background be `bg.png`, with the thumbnail section background be `wood.png`. I've changed the CSS to what I believe to be correct(see below), but the background of the thumbnail section isn't extending the full `961px`, it's restricted to the `921px` width I've established with the main image. I have a feeling this might be due to nesting within the plugin's php/jquery, I'm just not
  • Character counter

    Hi guys, I need some help with a character counter in a textarea with a maximum of a 100 characters. There must be a text at the outside right bottom corner of the text saying eg 77 characters left. Thanks in advance
  • select value to $.ajax type post

    Hello, Sorry, I looked for in this forum but I didn't find anything :( I want to forward the result of my select (one choice) to my php file thanks to Jquery.ajax but "$('#cdr_search_list').val" seems not to be a good method.  In fact, I have the following answer with Firedebug :  Array (     [cdr_search_list] => Array         (            [0] => test1         ) ) Code : $('#cdr_search_list').bind('change',   function() {     $.ajax({       url: 'proxy_cdr_get_id.php',       type: 'POST',       data:
  • Load Deprecated

    The event load (window, image) is the in deprecated list.  I could not find the alternative in the discussions or on the specific API entry.  Is this just going away?
  • tablesorter

    Do I have to do anything to get the arrows in the headers to show which column is being used for the sort? When I click on the column headers it is sorting, but I'm not getting the arrows. 
  • how reloadPage attribute works on a page?

    Hi all, I´m have a problem on my application, i insert some data in two inputs, and when i go to another page and return to previous page the inputs is clear, the change between pages is made for example by <a href="page.jsp"> tag. Studing the page attributes, i suspected if the reloadPage attribute it´s involved with my question, but the default value for this attribute is false, in teory the page already exists in DOM and don´t will be created again.. then, why when i return the page the values
  • JQuery Cycle

    I am using this plugin and I am having problems using one of its functions. I started with this code: http://www.malsup.com/jquery/cycle/pagerHover.html Then I wanted to add the following function -> http://www.malsup.com/jquery/cycle/int2.html at the top left it shows you how to make your plugin advance to slide by clicking on the picture. I have tried and Its working :)... now I am trying to use the one n the right side (Prev/Next) and I just dont have any ideas how to make it work with the code
  • Dynamic Navbars..

    I need to dynamically add and remove buttons from a navbar and have a work in progress that *almost* works.. My navbar html looks like this: <div data-role="footer" data-id="nav-footer" data-position="fixed" >       <div id="navbar" data-role="navbar" >       <ul id="navcontent">          <li><a>Loading..</a></li>       </ul>    </div> </div>       When necessary I update the navbar as follows: $('#navbar').navbar('destroy'); for each new button {    $('#navcontent').append('<li><a .... </a></li>');
  • trying to determine IF a text element IS a label for a select

    I need to be able to tell IF a text element is a label for a select ( if it is I will ignore it ) <div id="text28202" style="visibility: inherit;">       <a id="a_1_3_10" href="javascript:radio28203id.click();" name="text28202anc"></a>       <label id="label28203id" for="radio28203id">             <p style="margin-left:0px;text-indent:0px;line-height:1.394;text-align:center;">             <span class="text28202Font1">Strongly Agree </span>             </p>       </label> </div> In other words - How
  • Newbie: Ball rolling jquery?

    Been looking for a a plugin which will imitate the motion a ball would make randomly moving around a browser window. The closest I've found is http://motyar.blogspot.com/2010/04/firefly-jquery-animation-plugin.html (https://github.com/motyar/firefly) which works great - I can put in an image of a ball instead of the firefly and it moves around the screen great. But, I would like to make the ball look like it's actually rolling (think ball with logo on it). The ball would need to be an animated gif
  • click event with overlapping

    Hello guys, I've read of a nice function a few weeks ago to solve the following problem...: Imagine we have a foto-galery and a layer on the complete page filled with black with an opacity of 50% to make the "background" darker so that the image is in foreground. Now i want to trigger a click event which is on the "normal page" behind the dark layer. But when i click on this, it obviously click on the dark layer because the layer is above all the other elements and the click event isn't triggered.
  • Show then delay and finally hide

    Hi All, I am trying to show a hidden div if a certain condition is met, then have there be a delay and then finally have the div hidden again. Here is what I got: HTML: <span id="category_message" style = "display: none;"><h3 style = "color: red;">Invalid Category</h3></span> jQuery: $j('#category_message').show(0); setTimeout(function(){    $J('#category_message').hide(); }, 2000);  I have also tried several variations of this and what happens is that the show works great, but the delay and the
  • How can I make divs fade in from black and white to colour on mouseover?

    Hi, On my page there are four columns of images. please see http://i-n-t-e-l-l-i-g-e-n-t-s-i-a.com/entry.html There is some jquery (which is commented out at the bottom of the html, see script below also) that converts all images to black and white and when you hover they fade to colour, which is what i am trying to apply to these images. however when i do apply it it totally changed my css. Dow anyone know how I get this to work on my page? $(window).load(function(){ $(".wrapper img").fadeIn(500);
  • 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