• How to get the return from the get method in a input field

    Hi togehter, i have a problem: I want to get a variable from another site via ajax get. Here my code: $(document).ready(function() {     $("button:first").click(function(){         $.get("text.cfc?method=checkIBAN",         {             iban: $("#testfeld").val()            },                 function(data){          $('#test').html(data);          $('#testfelder').val(data.html);         });      }); }); So I the right staff back but I want to fill the input field with this return. It doesnt work..
  • problem with firefox

    please help me.which browser is suitable for jquery
  • Target row in table that has the clicked link

    Hi. I have a table, with several rows. One row has a class of 'order_details'. Within the table I have a link. I want this link to show this row (default hidden). The problem is I have multiple tables, with the same structure. When I click the link, it opens all rows with the class. How can I say only open the row with the class 'order_details' that is within the current table? Thank you
  • Unable to click Table's Td on single click

    I have table with check boxes in each row which is hidden. I have written a jquery function to check/uncheck the checkbox when clicked on TD and change its background color. My issue is I have to do double click on TD inorder for this change to happen. Can anyone please tell me what the issue is? Here is the HTML  <td id="tid" width="10">       <label for="checkbox"><input type="checkbox" id="c1" value="checked" /></label> </td> JQuery Code: $('#custom-interval-tbl td').click(function(e) { if($(this).find('input:checkbox').is(':checked'))
  • Comment System AJAX/PHP in JQM

    Hi! Im trying to build a comment system with AJAX, PHP and MySQL, but i have found some example that not working in JQM. Could anyone help me? Thanks very much!!
  • fullcalendar displaying "12a" in the title, even though I have no title format

    fullcalendar displaying "12a" in the title, even though I have no title format, so I do not see an option to format this correct as I am literally passing a time.  Does anyone know how to remove the 12a from where the title is displayed?  I've read about this, an it appears to be taking a null from somewhere, but all fields are set with time, including the title value returned in json.
  • Button using data-rel="back" does not use slide transition in Chrome.

    I have a button in a navbar to to back nagivation.  Here is the syntax I am using:   <a data-rel="back" data-direction="reverse">Back</a>   The calling page uses a link such as:   <a href="foo.html" data-transition="slide">   The transition works fine in Safari.  In Chrome, there is no transition, it just loads the prior page.  The weird thing is if I use the link :   <a href="foo.html" data-role="button" data-direction="reverse" data-transition="slide">   instead of the prior link listed then chrome
  • Registering a dynamically created form

    Hi everyone, I'm having problems submitting data from my dynamically created form.  I believe the problem lies in hows it is being registered.  It is submitting the form but not passing any data into my ajax call which is causing the PHP to fail. I use this in other places within my website and it works, but not when the form is created dynamically. You can find the jsfiddle here -->  http://jsfiddle.net/skyros/ZFE7x/ What it does: HTML is loaded in dynamically using .load(); User selects an image
  • synchronize calls to the server from each() loop

    Hi, I'm sending some html selected paragraphs from an iframe to the server to update a database. I have something like: $(".selected", $(frame).contents()).each(function(){  ... sendToDB($(this)); } But sometimes it takes time to update the database and not all the paragraphs are sent to the data base. is there a way to synchronize this loop with the response from the server?
  • Creating frame in IE

    Hello, I want to create a frame, in this frame there will be content loaded which must me formatted with a specific style (the reason for a iframe). I wrote some code which works fine in firefox, but doesn't work at all in IE (I get an error). Does anybody has an idea how to fix this? I create a jsfiddle as a demo: http://jsfiddle.net/fBe3C/ Thanks, Sjaakmans
  • set toggle class on individual div.

    I have three div with same class. In this what I need is when I hover on that div so it will change it's color but if that div is selected so that stick with that selected color. and other are stay as it is and when I select another div so that selected div show normal. here is my Example.  [html] <div class ="box" id="1"> Something </div> <div class ="box" id="2"> Anything </div> <div class ="box" id="3"> Anything </div> [js] $(".box").click(function() {     $(this).toggleClass("disable"); }); [css]
  • i have faced problem in firefox12

    i am working on paroll project. we are using jquery,springs and hibernate. recently,we are using ff12 version and we fixed css properties to our application.   then,when we opened some pages not opend shows blank page.when we click 3rd or  4th time  the data wll displayed on screen.   so please suggest any one.
  • need help for slideshow jquery

    hi,i need to code of beautifull slideshow jquery for php nuke?????????/ plz if you have give to me
  • Rollover color issue on cells based row

    In my grid, 4 div based cells collectively make a row. If i rollover any cell it should highlight all other cells of the row. My code is as under: <div dataindex="0" dataid="303" class="myclass mygrid-data-cell mygrid-data-odd-row" id="cell-1-0">First Column</div> <div dataindex="0" dataid="303" class="myclass mygrid-data-cell mygrid-data-odd-row" id="cell-2-0">Second Column</div> <div dataindex="0" dataid="303" class="myclass mygrid-data-cell mygrid-data-odd-row" id="cell-3-0">Third Column</div>
  • need jquery slideshow help

    Hi I have just pasted in coding for a jquery slideshow but it only keeps showing the first image and none of the other images, the coding is below In the head section I have the following <script type="text/javascript" src="jquery-1.2.6.min.js"></script> <script type="text/javascript"> /***      Simple jQuery Slideshow Script     Released by Jon Raasch (jonraasch.com) under FreeBSD license: free to use or modify, not responsible for anything, etc.  Please link out to me if you like it :) ***/ function
  • Large item dropped within small tab ... is that possible ?

    Hello, I have an accordion embedded in a connected sortable list. My items (accordions to be dropped from one tab to another) are 300 px when my tabs are like 50 px. When trying to drop those elements it doesn't work.... it can be dragged but refuses to get dropped.(too large to be swallowed ;-) ?) Anyone used good practice to perform this ? Thanks ! Paul
  • JQuery images roll over effect not working in IE8

    Hi  I'm doing a micro-site with a grid of images, i created a bit of code to do a simple roll-over so when you are over the images display a blue panel with titles. It works fine in Firefox, Chrome and Safari but IE8 is not working at all.  here is the link for the live version: http://loweandpartners.com/ms/lowe/ Could you guys give me directions and tips so I know what i am doing wrong, I will appreciate it. thanks in advance. Jquery Code I put it in the header, just put it here to make it easy
  • get pieces of text from unpaired tags

    Hi, I'm trying to get the text nodes of this paragraph: I would like to get each part of text: text0, text1, text2,text3 and text4, and surround it with a div element. I've tried to get the paragraph childnodes into a list of nodes, but it doesn't get the textnodes. Do you know a way to get these pieces of text and surround them? <p><span>text0<span> text1</span>text2<span >text3</span>text4</span></p> Regards
  • Ajax Post Not Sending Array

    Hello, Back again with another question lol So I have been trying to send an array of a UL:LI to a PHP page. The array is made and through jQuery can be read just fine. The problem is when I use the $.ajax() function the array is not sent. jQuery.html <html> <head> <title>jQuery Testing</title> <script type="text/javascript" src="templates/js/jquery.js"></script> <script> $(document).ready(function() { $('.list1 li').dblclick(function() { $(this).clone().appendTo('.list2'); }); $('#test').click(function()
  • jQuery tabs and url links

    Hello Everyone: My question is about jQuery tabs and external URL links. I've installed some jQuery tabs on my site. Following is the html format: <div id="vtab">     <ul>         <li id="tab_1" class="home"></li>         <li id ="tab_2" class="experience"></li>     </ul>     <div id="tab1_content" class="outer">         <iframe src="http://www.mysite.com/runtime/tab1.php" frameBorder="0"></iframe>     </div>     <div id="tab2_content" class="outer">         <h1>Experience</h1>         <ul>        
  • Issue with jqplot

    Anyone here know about jqplot? I'm having an issue, but I don't want to post it if this isn't a good place. I've posted to the mailing list, stackoverflow, and even emailed the author, but I have not received a reply. If anyone thinks they can help, let me know and I'll post the issue. 
  • AJAX fail in Mobile App

    Anyone build a Web App with jQuery where the AJAX had no response in the web app but code worked outside the web app? 1. When we run the code outside a web app it works. 2. We add the mainfest and include it in the header and AJAX (jQuery) gets no returned value from the outside world. <html manifest="/member.appmanifest"> Anyone conquered this in a web app? (We saw comments about outside web apps but they did not appear to help.) Note all the AJAX and jQuery run fine... the issue is with the AJAX
  • Help to get element under one TR

    not sure what is wrong, when I tried to get the below element   <tr id='123'>.....<span class='userstatus'.... <tr id='124'>.....<span class='userstatus'.... <tr id='125'>.....<span class='userstatus'....   I tried $('#123 .userstatus'), I expect it return one element, but it returns 3, any idea how I get the userstatus span under a special tr?   Thanks
  • Problem with fadeIn, then fade back again if clicked on .

    Hey guys! I made a "menu" and I want some content inside a div element to fadeIn if any of the menu numbers are clicked. And each number in the menu has a diffrent content. It works fine if I click on the number 1 then nr1's content shows up, same with number 2. But lets say that I click on number 1, then on number 2, if now try to click on number 1 again nothing happens, nr1's content wont fadeIn again. My code is: $(document).ready(function(){ $(".one").click(function(){     $("#contText").fadeIn("slow");
  • ipad scrollable pls help

    Hi, I integrated  flickable code with my code... http://labs.kojo.com.au/demos/flickable/demo2.html but i am not able to make the menu to be scrollable in the popup after clicking this link  <a class="openme">Find ATM Locations</a> <!doctype html> <!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]--> <!--[if (gt IEMobile 7)|!(IEMobile)]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <title>Flickable.js / Demo 2</title> <!-- Mobile viewport optimization --> <meta name="viewport"
  • issue with collapsible content event jqm:1.1.1

    Hello, First of all, i want to apologize for my mistakes in english (i'm french...). In the previous version of jqm : 1.1.0, i could associate an event on img in a collapsible content block but i'm unable to do the same thing in the last stable version. But i think that it's easier to understand with a simple code : test.html <htlm>       <head>             <title>Demo</title>             <meta name="viewport" content="width=device-width, initial-scale=1"/>             <link rel="stylesheet" href="jquery.mobile-1.1.0/jquery.mobile-1.1.0.css"/>
  • scrollable

    how to transfer this code http://jsfiddle.net/aNSEn/98/ into scrolling like this... http://labs.kojo.com.au/demos/flickable/demo2.html 
  • Embedded YouTube - back button not clearing youtube heading

    Hello   I have embedded a Youtube video on to a mobile website .....   <div data-role="page" id="includ2" data-theme="c"  data-direction="reverse" data-position="fixed">        <div data-role="header">                <h2>Video</h2>        </div><!-- /header -->         <div>                <iframe width="280" height="158" src="http://www.youtube.com/embed/dR8lt_NkfDI?rel=0" frameborder="0" allowfullscreen></iframe>        </div><!-- /content --> </div><!-- /page -->     This plays the video fine
  • Ajax cache

    what is the default value of cache parameter? is there any example of ajax cache?
  • removing multiple lables as well as text boxes

    Hi, I'm just starting out using jquery and would like to do something fairly simple. Here is my code  13     <script type="text/javascript">  14         $(function() {  15                 $("#show_button").click(function() {  16                     $("#id_1, #id_2").fadeIn();  17                 });  18                 $("#hide_button").click(function() {  19                     $("#id_1, #id_2").fadeOut();  20                 });  21         });  22     </script> This works, but the labels for id_1
  • range slider dynamic generation problem

    Hi, I've posted this topic as a bug but an expert user encourages me to post it in the forum... here's the description of my problem: Inside an ASP.NET page, after some requests and responses I need to generate jquery UI range sliders dynamically. I've got to create the sliders (there are many sliders as dynamically generated table rows) but, when you drag each one, the changes only are viewed in the last textbox slider, not in the corresponding slider's textbox. The jquery version is 1.7.1 and jquery
  • Table edit cell without plugins

    i want to edit table cells in zend framework use to jquery ajax without any plugins.
  • before fetching data by the scroll event screen goes grey for a moment

    I am using an infinite scrolling paging. Every thing is going fine. But when the scroll bar reaches at the bottom the screen goes grey for a while and then the data appears. I need to show a loading image at that grey out time when data is fetching from the database. Please help me. 
  • Centring grouped buttons

    Upon version 1.1.1 this markup <div style="text-align: center">     <div data-role="controlgroup" data-type="horizontal" data-theme="a">         <a class="mbtn-group" href="#about" data-role="button" data-theme="a">About</a>         <a class="mbtn-group" href="#help" data-role="button" data-theme="a">Help</a>         <a class="mbtn-group" href="#tou" data-role="button" data-theme="a">ToU</a>     </div> </div> has centred grouped buttons. Now it is aligned left and it seems I can't get around it.
  • Jquery JsonP - Callback undefined error

    Dear All, I am calling my server side page using JSONP to get the values from server and it looks like Server side code:(asp.net) "getResponse({""Name"": ""Foo"", ""Id"" : ""1234"", ""Rank"": ""7""});" Client side looks like:     <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>   $.getJSON("http://mydomain.com/temp/getjsonpcode.aspx?format=jsonp&callback=?", function(data) {             alert(data.items);         }); and am getting below error : Webpage error
  • Problem at json from web url

    i using the json jquery in the WebApplication Java with this method and working:   jQuery.ajax({      type: "GET",      url: "webresources/generic",      dataType: "json",    success: function(e){      alert("yes");   },   error: function(e){       alert("no");   } }); however when i using this method outside the WebApplication Java not working       jQuery.ajax({   type: "GET",   url: "http://localhost:8080/WebApplication21/webresources/generic",   dataType: "jsonp",   success: function(e){      
  • How to add an image over video thumbnail?

    Hi there, Can anyone tell me how to add an image over video thumbnail using Jquery or javascript? What exactly I'm trying to do is I want to add play button over every video thumbnail image. Like this. In this site. Please find the video module below. There are some video thumbnails.  
  • Weird problem with loading/rendering DOM

    Hello, i already spent more than 48 hours for this problem, and still no idea to solve it.. here's my scenario: i have a function (i.e: getPreview() ) that load a preview of an image , the load are done with ajax. now getPreview() is triggered from a button (i.e: .renderbtn) There's no problem with the above scenario, the problem arise when i want to build a button to show all preview. Here's my function code: function showall(){                     $j.each($j('.renderbtn'), function(index) {    
  • Javascript to Jquery

    hi ;  i need to convert to javascript to jquery but i dont know how to do it , can you help me  ?  thanks for helps best regards  i need to convert this javascript  <script type="text/javascript"> function configureDropDownLists(XLEW_3_5_3,XLEW_3_6_3) { var K31_213mm = new Array('90', '106'); var K32_245mm = new Array('90', '106'); var K33_338mm = new Array('90', '106'); var K31D_213mm = new Array('106', '160'); var K32D_245mm = new Array('106', '160'); var K33D_338mm = new Array('106', '160');
  • .blockUI plugin centering issue

    Hi! I'm using the .blockUI plugin from here ( http://jquery.malsup.com/block/#download ) and for some reason my dialog box is not centering in the page.  Here is my pop up code/message:      $('#StreetNumberNameSearch').click(function () {         $.blockUI({             fadeIn: 1000,             message: '<h1 style="padding:10px 20px 5px 20px; color:#003366; font-size:18px;">To Search by Street Number &amp; Street Name</h1><p>Enter the street number and street name without designators such as West, North, Avenue, Lane, Road, etc.</p><p><b>Example:</b> 1234 Main Street would be entered as:</p><p><img src="/images/search_help/streetSearch.jpg" alt="" title="" /></p><p>&nbsp;</p><p><img src="/images/round_red_close.gif" class="floatLeft" alt="" title="" style="padding: 0 5px 10px 0px; margin: 0;" /><a href="#" id="closeStreetNumberNameSearch">Close This Window</a></p>'
  • 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