• HOw to create master page like .net in jquery while using java...........

    I am new to jquery if my question is silly i am sorry for that, i want to create a master page in jquery in that the sliding login panel will come in all the page and side link panel will be there if any one created these kind of page in jquery please help me by sending some sample code...........
  • Setting the Width of the Dropdown

    Hi everyone,   Sorry if this question seems absolutely basic.   I use autocomplete on my application. The width of the dropdown is equal to the width of the Input element that is used. I would like to use a custom width for the Dropdown leaving the width of the input same. Can this be done?   Abhay
  • How to load coordinates from xml into jqplot graph?

    Hi all, I'am new to Jquery and Jqplot. I have to create a website where a user can upload a xml file which should then be shown as a graph. My main problem is that I dont't know how to extract the x/y-axis coordinates from the xml file and how I should put them into the Jqplot code.. I'm just trying right know and show you some Code I made... Dont't blame me^^ I'am doing this only for a few days.. Thats my very simple XML file with only x and y coordinates: <?xml version="1.0" encoding="ISO-8859-1"?>
  • Validation

    i am using the  * jQuery Validation Plugin 1.8.0  i came across 1 small problem  i need to validate this input field <input id="awf_field-123456789-first" name="name (awf_first)" /> but when i do  rules: { name (awf_first): "required",                 } i get a error  does any one know how i can check the value of this with out changing the field name?
  • Can't figure out why footer is cut off after using ui tabs...

    Hi everyone, I am new to jquery.  I was playing around with the ui tabs but can't seem to figure out why my custom footer gets cut off whenever I apply the <div> tags for the tabs.  Below are the links to what I am referring to: http://www.photoboothnews.com/sample/before.php  (This is when everything was working fine) http://www.photoboothnews.com/sample/after.php   (This is after I apply the ui tabs, notice the footer on the bottom gets cut of on either side) I would greatly appreciate it if someone
  • Newbie Question - Resizing divs with slideToggle

    Hi, I am trying to get my divs to resize but i am having a number of difficulties. I am new to jQuery so be gentle! :-)  Here is what i am trying to achieve:  1) When the "About me" div is clicked - resize the "About Me" div and hide the other divs. (Which i have managed to get working)  2) When the initial animation has finished, wait for another click before resizing the div to its original size/position. (This is working but I have had to use the delay function to "pause" the animation - which
  • corner plugin bug

    I am not sure can I call it a bug if I use use corner plugin on two divs which one is including another, it will be failed on IE7 or IE8 have any solutions? demo page Chrome IE7/8 CSS <style> body { font-size: 12px; background: black; } .box-outside { width: 201px; height: 200px; background: yellow; } .box-inside { width: 199px; margin: 0 0 0 1px; height: 190px; background: blue; } </style> JS <script> $(function() { $('.box-outside, .box-inside').corner(); }); </script> HTML <div class="box-outside">
  • GET parameter inapropriate treatment

    On Jquery Mobile Alpha 2 , it worked fine, now I've got a problem. The problem is as follows: I have an url like  : http://mysite.com/blah/id/#/blah/id/?page=2 On this page I have some details, inside a list , if i click on them , a item id is passed to get the page with more details. I've got a link like <a href="othercode/itemcode/"> click me </a>On alpha 2 it worked getting me into the page: http://mysite.com/blah/id/#/blah/id/othercode/itemcode/?page=2 Alpha 4 just mess up , getting me on: http://mysite.com/blah/id/#/blah/id/?page=2othercode/itemcode/
  • Problem with Ajax in jquery

    Hi All, I am new to this jquery world. I am facing some problem while using Ajax in my jquery code. I want to get some data (String ) from server using Ajax call. below is my code:     $.ajax({               url: "./something.do",               context: document.body,               success: function(){                 alert("helo");               }         });         Or         $.post("./something.do",null,function(data){                 alert("come");                   });    I tried with both
  • Touch firing two events or the same event twice on back button

    I have an application that has several pages, when I get navigating into them the button back appears just right on his place, but , some times it takes me back two steps instead of backing one step.
  • $.getJSON not returning any data for cross domain

    below are my code   $.getJSON("http://mydomain.com/phptest.php?jsoncallback=?",function(data) {  alert(data.a); });   phptest.php echos out the following     {"a":"hello world"}   Yet, when i made the json calls(cross domain), it just return me nothing. However, under the same domain, I got the pop-up alert and return me the relevant data. But getJSON is suppose to be feasible across all domains irrespective of the same-origin policy. Please help.
  • Select in Dialog causes slowness in IE8

    I have just run into a scenario where <select> elements in a jQuery UI dialog become slow to react or stop all together.  This problem appears to have been reported as #6644 (http://bugs.jqueryui.com/ticket/6644). Problem: The setup is as follows: 1.  <div id="myDialog"> contains a <select> element 2.  jQuery.ready() initializes dialog on <div id="myDialog"> 3.  A click event on an <a> triggers an AJAX call which retrieves data, populates the <select> and opens the dialog <div> I have tested this
  • using RSV validation

    Hi, I am using benjamin keen's jQuery validation RSV and i have a couple of questions: 1/ How do i setup the function submitData? //validation test  function submitData()   {     alert("The form validates! (how do i submit the data to stage3.php).");     return false;   }  $("#reserveringForm").RSV({  onCompleteHandler: submitData,  displayType: "alert-one",  rules: [  "required,first_name,Please enter your first name.",  "required,last_name,Please enter your last name.",  "required,email,Please
  • Jquery autocomplete plugin

    I am using the jquery autocomplete pugin from http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ I need to perform an action if no data is returned from the autocomplete search but there seems sto be no way to do that. Any ideas pls?
  • Google eCommerce tracking fix for when a payment is completed transfering to a different secure domain

    Hi guys I have a problem with my google ecommerce tracking on my site. The problem is that when a payment is completed my site URL changes from: www.website.com to website.securetill.com The problem with that is when I look in my Google Analytics it displays the traffic source for all customer purchases to be from www.website.com because obviously the customer is converting on website.securetill.com and the last site domain they were on is www.website.com The developers of our ecommerce system say
  • Loading content and appending to a div

    Hi, From these forums I have learned I can load content and update a <div> using the following code: var auto_refresh = setInterval( function() { $('#loaddiv').fadeOut('slow').load('mypage.html').fadeIn("slow"); }, 5000); <div id="loaddiv"></div> However what I would like to do is load the html into a variable and then append it to the <div>. Looking through the forums I see people have suggested using get instead of load. However when I use $.get there is nothing in the responseText or responseXML.
  • querying XML ??is there any way to Query xml doc which was returned by $.ajax

    Is it possible to Query response xml document from an $.ajax ...or is it possible to use Xquery with Jquery
  • using multiple callback in a row?

    Hi! i am still a beginner at jquery and i bumped into some questions about callbacks, where i could not find any usefull documentation on. maybe someone can help me understand tell me where to find out more? -is it possible to call a callback from an anonymos function that is running as a callback itself? how would the correct code look? (i could not get that running) -if i try to animate a set of elements who match a selector, the animations will be executed on each element in some sort of a loop.
  • Documentation comments -- please re-enable!

    Hi folks -- I notice that on all of jQuery's documentation pages that I've visited recently, the Comments section is Closed. Does anyone know whether there was a compelling reason for this?  I find that often the comments are extremely useful, explaining some gotcha or nuance that the main doc does not.  Those notes are hard-won knowledge, I hugely appreciate the time it takes for people to add them, and I would love for that to continue. Thoughts? -- Graham
  • Loading html and manipulate it's DOM before inserting it into the document

    Hi folks, I've some problems loading a complete validated HTML5-File (with <!DOCTYPE html> & <head> & <body>) from a given url, and manipulate it's content (respectively select a specific source-element in it) before inserting it into a target-element in the displayed document. loadContent = function(url, sourceElement, targetElemet) {       var ajaxParams = {};       ajaxParams.url = url;       ajaxParams.dataType =       "html";       ajaxParams.success =       function(returnedData) {                                           
  • Loading all my scripts and libraries from a single script

    I was just wondering if it would be a good practice to load all my .js scripts and .js libraries from a single file. I have been working on a few projects recently where I have had up 8 lines within my <head> tag. I figured using jQuery's $.getScript function inside a single .js file would be a good solution... it's easiert to perform logic within that .js file, only loading the resources needed... it would also minimise markup within the HTML files. The reason why I ask is because I have been to
  • footer with ui-bar class too large on iOS

    Hi list, I've been searching hours, restarted project from scratch twice and now copy/paste the doc examples and facing the same problem : As soon as I set class="ui-bar" to the footer the footer bar is wider than device width. Touching a button in the footer seems to rescale correctly the footer. <!DOCTYPE html> <html>     <head>     <title>Page Title</title>     <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" />     <script type="text/javascript" src="http://code.jquery.com/jquery-1.5.min.js"></script>
  • Very specific question about cycle plugin as Navigation

    I am planning on using the cycle plugin for a slideshow/navigation hybrid can I hide certain slides until only certain links are clicked? and after a certain ammount of time the browser is idle on those clicked slides the cycle plugin resumes a regular slideshow? that would be amazing  
  • Take The Free Jquery Code With Explanation For Carosel And Tree Structure.. Clear Explanation In Simple Manner..Also Need Ur Comments On These To Improve Us

      http://mediamilan.com/how-to-create-simple-and-sleek-jquery-carousel-gallery/          //For Carosel   http://mediamilan.com/how-to-create-simple-tree-structure-menu-using-jquery-and-css/  //For Tree View
  • jQuery has boggled my mind, new and need help!

    I am creating a system which utilizes the viral nature of allowing others to rebrand a pdf. I have a reranding script that allows users to put their info and it hosts the pdf on my server. The pdf is embedded in an inline frame that requires an email to "unlock" for list building purposes. Since I've got my system set up so that the pdf is embedded into the Iframe requiring an email to unlock, how can I use jQuery so that my affiliates can fill out a simple form and replace my email form account
  • merging two plugins to work together

    Hi. I'm starting to use jQuery lately. I'm trying to combine jquery.selectbox-0.5_style_3 with another script to google maps v3. If I don't use styling selectbox, I don't have any problem with selecting some option from selectbox and centering map on coords which are values of this selectbox. But since im using styled selectbox (changes <option> to <li>). I have no idea how to trigger google maps script to work when i change value on styled selectbox. I have actual value from styled select, but don't
  • Media queries for max-width-xxx are all true?

    What is the rationale behind the idea of this? Tested on iPod touch: <!doctype html> <head>   <meta charset="utf-8">   <title></title>   <meta name="HandheldFriendly" content="True">   <meta name="MobileOptimized" content="320"/>   <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, maximum-scale=1.0">   <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.css" />   <script src="js/libs/modernizr-1.7.min.js"></script> </head>
  • Jquery Multiple add row(s) using after from a function...?

    Hey guys...! Suppose I have this one, <!-- mula contact person div --> <div name="contact_person" class="round"><table id="contactptable" width="590" border="0">   <tr>     <td colspan="2"><input type="button" id="contactpadd" value="+" />Contact Person</td>   </tr>   <tr>   <td><input type="button" name="contactpremove" value="-" /></td>     <td>        <select name="contactptitle" >         <option>Mr.</option>         <option>Ms.</option>       </select>       <input type="text" name="contactpname"
  • Ideas to handle mouseover/mouseout bubbling causing each one to trigger the other endlessly

    I have a situation that I think is generating a conflicting need. On the one hand, I need an event that bubbles up so that I can use the live() method to pick up elements that are added dynamically to the DOM. On the other hand, I am having an issue with the event bubbling up when I am over the element. Let me explain the best I can: I am using the jQuery auto page function to create the "infinite page" effect. I have another jQuery function that I have written to create an effect on elements on
  • jQuery 1.52 and dataFilter conversions

    Hi all, It looks like jQuery 1.52 has broken some custom JSON parsing for me. I use custom JSON decoding to allow for date parsing. I've been using this code for a long time back to jQuery 1.3 and it's just now with version 1.52 that this is breaking. The $.ajax() code I'm using looks something like this where I'm using a custom dataType (serviceproxy) to bypass the default decoding pipeliine (but I've also tried this with text with the same result):         $.ajax({             url: url,            
  • jquery.mobile-1.0a4.min.css causing Firefox Error console to fill up with dropped delcarations

    I realize that jQuery Mobile is marked as Alpha, but I can't find a single post related to this fact (and how to solve it). https://github.com/jquery/jquery-mobile/issuesearch?state=open&q=declaration+dropped Just making the most simple of pages results in about 100 messages like this: Warning: Error in parsing value for 'background-image'.  Declaration dropped. Source File: http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.css Line: 16 Warning: Unknown property 'border-radius'.  Declaration
  • JQuery Cycle - multiple slides and captions

    I have a slideshow displaying 3 slides at once (demo version here). I'd like to display a caption under each slide based on the alt tag. I have this working enough to where it's displaying the caption of the first slide in each set. I tried a few things to get the 2nd and 3rd captions displaying, but I'm at a loss. Any help is much appreciated! Code is below. <html> <head> <style type="text/css"> .slideshow { margin: 20px auto } .slideshow img { padding: 15px; border: 1px solid #ccc; background-color:
  • Error in IE using jquery cycle with fx: 'custom' with property "display"

    Dear jquery-cycle-cracks I use the cycle plugin for diplaying som banner in a website. My idea was to move them one by one, from left-side in, leave a couple of seconds and then let them move out to the right side. That works fine wit one or more banners on Firefox, Opera, Safari but not on IE (V8). The IE always trows a Error: Zeile: 16 Fehler: Die display Eigenschaften wurden nicht gefunden. Ungültiges Argument. It happens with the followinghtmlcode as example(simplified): <div id="banner">   <div
  • Need help with Jquerry Validation Email

    Hello everyone, I am using Jörn Zaefferer's jquerry validation plugin. I first isolated the form styled it with css and got it kind of working how I wanted it, see the example here, but when I incorporated into my website, which by the way has another jquery plugin installed, the validation stops working. I would really appreciate your input. Thanks!
  • validate-email with jquery-1.5.1

    Could somebody give an example of how to display validation error message on the right side of the the HTML-element rather than on top or bottom ? Thaks very much in advance
  • Hoping there is a simple mod to this

    I bought this accordion (http://codecanyon.net/item/modern-accordion/full_screen_preview/48072) which runs off of jquery and need to modify one thing. I, and several others, have asked the developer for the answer but no replies. As you can see the accordion never closes, once opened—it can only switch between the tabs. I would like to be able to click on the tab again and make it close. Better yet, I would like to mouseover the tab to open it and then once my mouse leaves any part of the opened
  • How to get these two functions to work together?

    I have two different JQuery functions that both work independently, but I am curious how to get them to work together. I have a row of images, and I am using JQuery to have them fade in and out on rollover. $(document).ready(function(){     //Set opacity on each span to 0%     $(".rollover").css({'opacity':'0'});     $('.img_list a').hover(         function() {             $(this).find('.rollover').stop().fadeTo(500, 1);         },         function() {             $(this).find('.rollover').stop().fadeTo(500,
  • Jquery Issue with other Javascript in page

    Hello, I am a relatively new Jquery user and more of a PHP developer in general. I am currently doing both for a project and having some issues with a Jquery image slider and the other Javascript I'm using in the page. The basic page contains two main scripts: a vertical Mainmenu and a scrolling Marquee across the bottom of the header. These have been working fine but I just tried to insert a cool Jquery slider called the Nivo Slider which uses jquery-1.4.3.min.js and also its own jquery.nivo.slider.pack.js
  • Overscroll and starting position

    Short Version : Is it possible to alter Overscroll somehow to make the element start scrolled 50% of the way along both the x and y axes? If so, how? Long version: For a current project, I'm using jquery and the Overscroll plugin (http://www.azoffdesign.com/plugins/js/overscroll) to allow a large table to be scrolled around, ultimately to produce a google maps kind of effect (ajax included, but I've got that part figured). What I'd ideally like is for the table to start positioned such that the center
  • PageLoading block UI

    Hi, Is it possible to block the UI when using $.mobile.pageLoading(false)? Thanks.
  • 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