active questions tagged javascript+jquery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T16:50:32Z http://stackoverflow.com/feeds/tag/javascript+jquery http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/799981/document-ready-equivalent-without-jquery 6 $(document).ready equivalent without jQuery FlySwat 2009-04-28T21:51:11Z 2009-12-07T16:46:49Z <p>I have a script that uses $(document).ready, but doesn't use anything else from jQuery. I'd like to lighten it up by removing the jquery dependency.</p> <p>How can I implement that functionality without it? It does more than window.onload.</p> http://stackoverflow.com/questions/1861103/how-can-i-access-server-controls-from-my-external-javascript-file 0 How can i access server controls from my external JavaScript file? Colour Blend 2009-12-07T16:27:03Z 2009-12-07T16:43:12Z <p>When i use this <code>"#&lt;%= txtNumberOfDrugsInKit.ClientID %&gt;"</code>, i can access the server control from my JQuery script; but when i put this in an external script file, it does not work.</p> <p>How can i access an asp textbox from my external JavaScript file? I cant believe this is not working.</p> http://stackoverflow.com/questions/1860956/using-the-mouse-to-highlight 0 Using the mouse to highlight vrish88 2009-12-07T16:07:46Z 2009-12-07T16:19:00Z <p>Hello, I'd like to take the selected text on screen (text highlighted with the mouse) and when a button is pushed wrap that text in a tag. I'd like to use jquery but if it can be done in another framework that would be fine too.</p> <p>I haven't been able to figure out how to do this yet, so any thoughts are appreciated. Also I know you can run into issues if the text goes across several elements so for now case just assume the text highlighted is all contained in a <p> tag.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1860916/using-jquery-with-google-load 0 Using jQuery with google.load VANJ 2009-12-07T16:00:33Z 2009-12-07T16:18:07Z <p>I am trying to understand how to use jQuery when it is loaded using Google CDN's google.load method.</p> <p>Putting the init code in the setOnLoadCallback function works great but defining functions for event handlers in the markup doesn't seem to work. In the example below, the P button works as expected but the Div button does nothing.</p> <p>Yes, in this example, I can put the div's onclick handler also in the setOnLoadCallback function but does that mean that <strong>all</strong> jQuery code has to be there? </p> <p>Help? Thanks</p> <pre><code>&lt;p id="p"&gt;Content&lt;/p&gt;&lt;button type="button" id="btn1"&gt;P&lt;/button&gt; &lt;div id="div"&gt;Div&lt;/div&gt;&lt;button type="button" id="btn2" onclick="btn2()"&gt;Div&lt;/button&gt; &lt;script src="http://www.google.com/jsapi"&gt;&lt;/script&gt; &lt;script&gt; function btn2() { $("#div").toggle("slow"); } google.load("jquery", "1.3.2"); google.setOnLoadCallback(function() { $("#btn1").click(function () { $("p").toggle("slow"); }); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1846179/float-issue-with-jquery-javascript-and-webkit 0 Float issue with jQuery/javascript and WebKit Robin Jakobsson 2009-12-04T10:43:35Z 2009-12-07T16:00:48Z <p>Hi,</p> <p>I'm having a problem related to WebKit: <a href="http://demo.frojd.se/webkit/index.html" rel="nofollow">http://demo.frojd.se/webkit/index.html</a></p> <p>When you click "Menu item 1" it shows it's children. This renders fine in Firefox 3.5, IE8 and in Opera 10. In WebKit-browsers (Safari 4 and Chrome 3) it doesn't.</p> <p>However, if I preset all the different classes and css-settings in the html, it renders correctly (without the javascript click events). I've got an URL to show you, but can't since this is my first post.</p> <p>Any ideas on why this might be?</p> <p>Cheers, Robin. </p> http://stackoverflow.com/questions/1860747/filtering-mobile-browsers-by-failure-to-execute-using-jquery 0 Filtering mobile browsers by failure to execute using jQuery Dug 2009-12-07T15:36:59Z 2009-12-07T15:50:55Z <p>Hi all,</p> <p>Just getting some css together for a mobile web app (using the xhtml-basic/xhtml-basic11 dtd) and was trying to think of a reliable way to filter for mobile browsers. I've taken a look at <a href="http://detectmobilebrowser.com" rel="nofollow">http://detectmobilebrowser.com</a> but that appears to filter on the basis of a list of string matches. </p> <p>Here's what I'd like to do:</p> <p>1 - In the css, set the parts of the page to hide from mobile browsers to not display</p> <pre><code>#hideMeFromMobiles{display:none;} </code></pre> <p>2 - Call a script using a reliable library that is pretty much certain to fail in mobile browsers. The script does something like this (pseudocode)</p> <pre><code>if browser.window.width &gt;= 480px then { $(#hideMeFromMobiles).addStyle(display:block;) } </code></pre> <p>The idea is for the script to fail non-destructively on mobile browsers and run succesfully in desktop web browsers.</p> <p>My question is this:</p> <p>Firstly will this work? Is there some reason this is a dead-end and I should move to another solution?</p> <p>And secondly, could someone confirm the correct jQuery syntax?</p> <p>Thanks for your help, Dug</p> http://stackoverflow.com/questions/1860803/flyout-menu-with-scrolling 0 Flyout menu with scrolling Austin McDaniel 2009-12-07T15:45:41Z 2009-12-07T15:45:41Z <p>Guys,</p> <p>I'm trying to create a flyout menu that has scrolling build in if its larger than the screen. I can't seem to figure out how to do this with the native overflow-y scrolling properties. Everytime I seem to set that overflow-y:auto then the the menu that flys out is nested within the parent div with a scroll bar.</p> <p>Anyone has any ideas?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1860684/jquery-problem-with-html-handling-in-opera 0 JQuery problem with html() handling in Opera technix.in.ua 2009-12-07T15:26:11Z 2009-12-07T15:34:25Z <p>Hello everyone.</p> <p>I have following JS code (stripped to minimal size where problem still exists)</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="debug"&gt;this is &lt;em&gt;test&lt;/em&gt;&lt;/div&gt; &lt;script type="text/javascript"&gt; var string1 = $('#debug').html(); var string2 = string1.replace(/&lt;em&gt;/g, '&lt;strong&gt;'); string2 = string2.replace(/&lt;\/em&gt;/g, '&lt;/strong&gt;'); $('#debug').html( string2 ); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>In Firefox everything works and &lt;em&gt; tags are replaced with &lt;strong&gt;.</p> <p>But in Opera &lt;em&gt;'s are stay in place. Furthermore, any other HTML tags are not captured by regexps at all.</p> <p>Is there any way to fix this behaviour? I need not only to replace tags, but to parse their content too (href attributes for example).</p> http://stackoverflow.com/questions/1860482/when-do-you-choose-to-load-your-javascript-at-the-bottom-of-the-page-instead-of-t 3 When do you choose to load your javascript at the bottom of the page instead of the top? Colour Blend 2009-12-07T14:58:57Z 2009-12-07T15:20:14Z <p>I have seen JavaScript libraries being loaded at the top and bottom of the page.</p> <p>I would love to know when to make these choices. All the JavaScript code I've written all work at the top of the page, which includes jquery plugins.</p> <p>When do i load my script at any of these positions?</p> http://stackoverflow.com/questions/1860207/how-can-i-detect-internet-conection-in-asp-net-mvc-to-use-google-maps 1 How can I detect internet conection in Asp.Net MVC to use Google Maps? Mariano 2009-12-07T14:11:12Z 2009-12-07T14:46:35Z <p>I am developing an Asp.Net MVC application that uses Google maps to show Addresses in a map. The problem is that I need to demo the app in an environment not connected to internet. How can I detect with an script that the app is disconnected not to call the Google maps api functions?</p> http://stackoverflow.com/questions/1014554/jquery-datepicker-to-trigger-a-post 0 jQuery Datepicker to Trigger a POST J Siegal 2009-06-18T18:58:53Z 2009-12-07T14:41:41Z <p>hi, i want to use jquery UI's datepicker to trigger a POST that would then load information from the date picked on the datepicker from my database.</p> <p>so i guess this is a two-part question</p> <p>is there a way i can make it so the datepicker date, when selected, just gets passed into a POST, so someone would click on jan 1 2010 and it would automatically go to mysite.com?date=01012010 or something like that the way it is now the datepicker just updates a text box with the date, so upon clicking on jan 1 2010, the text box is populated with 01-01-2010</p> <p>which brings me to part 2 if there is no way to do what i asked in part 1, is there a method that triggers an event on the text box being updated, that way i could just do </p> <p>onTextUpdate{</p> <p>redirect to - mysite.com?date=$whateverIsInTextBox </p> <p>}</p> <p>or something like that</p> <p>please let me know if you have any solutions or ideas to do this, thanks a lot</p> http://stackoverflow.com/questions/1853662/how-to-show-page-loading-image-div-text-until-the-page-has-finished-loading-rende 1 How to show Page Loading image/div/text until the page has finished loading/rendering Shadi Almosri 2009-12-05T22:24:13Z 2009-12-07T14:35:37Z <p>Hiya,</p> <p>I have a section on our website that loads quite slowly as it's doing some intensive calls. Any idea how i can get a div to say something similar to "loading" to show while the page prepares itself and then vanish when everything is ready?</p> <p>Cheers</p> http://stackoverflow.com/questions/1857617/getting-started-with-jquery 2 Getting started with jQuery Moshe 2009-12-07T03:16:11Z 2009-12-07T13:48:51Z <p>What is a good place to start playing with jQuery, besides the jQuery website. I'm having trouble with the way the site is set up - I dislike it. </p> http://stackoverflow.com/questions/1856890/why-does-jquery-use-new-jquery-fn-init-for-creating-jquery-object-but-i-cant 0 Why does jQuery use "new jQuery.fn.init()" for creating jQuery object but I can't? Soul_Master 2009-12-06T22:40:11Z 2009-12-07T13:05:15Z <p>I try to create some class based-on jQuery style like the following code.</p> <pre><code>myClass = window.myClass = function(x, y) { return new myClass.fn.init(x, y); }; myClass.fn = myClass.prototype = { init: function(x, y) { // logic for creating new myClass object. } }; </code></pre> <p>I do not understand why jQuery use new keyword for creating its class because from my experiment, JavaScript always create myClass.init object instead of myClass object. However, I try to remove new keyword in myClass constructor. But it still not changes. Can you explain why jQuery can do that but I can’t or give me some code for using in init function?</p> <p>By the way, I can use the following code instead of jQuery style code for creating the same object. What is the different between my code &amp; jQuery code? Are there any benefit for using jQuery style?</p> <pre><code>myClass = window.myClass = function(x, y) { this.init(x, y); }; myClass.fn = myClass.prototype = { init: function(x, y) { this.x = x; this.y = y; } }; </code></pre> <p>PS. I like write code that separate initial logic into function because it is very easy to override this function by other people that use my code like my following code.</p> <pre><code>// override init function of myClass myClass.fn._old_init = myClass.fn.init; myClass.fn.init = function() { // logic for doing something before init this._old_init(); // logic for doing something after init }; </code></pre> <p><strong>Thanks,</strong></p> http://stackoverflow.com/questions/1859374/how-to-generalize-a-click-function-in-jquery 0 how to generalize a click function in jquery amir 2009-12-07T11:14:33Z 2009-12-07T11:48:49Z <p>I have 13 small pictures and 13 big pictures,if any of the small pictures are clicked it'll show the related big picture, I was just wondering if it was possible to generalize the click function so I don't have to repeat the dame code 13 times, thanks</p> <pre><code>&lt;div id="press_images"&gt; &lt;img id="s1" class="small" src="images/press/small/1.png" /&gt; &lt;img id="s2" class="small" src="images/press/small/2.png" /&gt; &lt;img id="s3" class="small" src="images/press/small/3.png" /&gt; &lt;img id="s4" class="small" src="images/press/small/4.png" /&gt; ..... &lt;img id="s13" class="small" src="images/press/small/13.png" /&gt; &lt;/div&gt; &lt;div class="big"&gt; &lt;a id="close"&gt;X&lt;/a&gt; &lt;img id="b1" src="images/press/big/1.jpg" /&gt; ...... &lt;img id="b13" src="images/press/big/13.jpg" /&gt; &lt;/div&gt; $("#s1").click(function(){ $('#b1').show(); $('.big').show(300); return false; }); </code></pre> <p>so I was wondering if I could change the $("#s1").click(function() so I don't have to repeat it 13 times.</p> <p>thanks</p> http://stackoverflow.com/questions/1859363/jquery-how-to-load-inputs-values-to-an-array 1 JQuery. How to load inputs values to an array? Semyon Perepelitsa 2009-12-07T11:13:32Z 2009-12-07T11:17:32Z <p>I have multiple input fields.</p> <pre><code>&lt;input type='text' size='10' name='firstname' id='firstname' /&gt; &lt;input type='text' size='20' name='lastname' id='lastname' /&gt; &lt;input type='password' size='5' name='password' id='password' /&gt; </code></pre> <p>I want to get all their values into a single array with jQuery. Like this one.</p> <pre><code>1 =&gt; 'Barack', 2 =&gt; 'Obama', 3 =&gt; '123456' </code></pre> <p>Existing method val() returns value from first match.</p> <pre><code>$('#firstname,#lastname,#password').val(); //returns only first name </code></pre> http://stackoverflow.com/questions/1859357/jquery-slow-apply-css-class-onhover 0 jquery slow apply css class onhover CapSoft 2009-12-07T11:11:10Z 2009-12-07T11:15:00Z <p>hello,</p> <p>current situation: i have an <code>&lt;a href=""&gt;&lt;/a&gt;</code> which has a css background image. in css i have the :hover pseudo class to change the backgroundposition.</p> <p>i would like to <code>fadeIn</code> and <code>fadeOut</code> the two different backgroundimages with jquery</p> <p>i do not have to animate the backgroundposition, but <code>fadeIn</code> and <code>fadeOut</code> two different css classes. is that possible? or do i need an other approach?</p> <p>thanks in advanced!</p> http://stackoverflow.com/questions/1859335/toggling-jquery-animation-getting-error 0 toggling jquery animation getting error Patrick 2009-12-07T11:05:55Z 2009-12-07T11:13:06Z <p>Im trying to have a layer animate/expand hight on click of a "show" button, and then, within the layer, have a button to hide it back to 0.</p> <pre><code> $(".showcart").click( function(){ $("#cart").animate({ height: "400px" }); $(".showcart").toggle();}); $(".hidecart").click(function(){ $("#cart").animate({height: "0px"}); }); }); </code></pre> <p>Not sure where the problem is, any ideas?</p> http://stackoverflow.com/questions/1859175/jquery-if-none-of-3-ids-have-content-hide-this 0 jQuery - If none of 3 id's have content hide this Jackson 2009-12-07T10:34:28Z 2009-12-07T10:41:09Z <p>Hi All,</p> <p>I have 3 div's drawing content from fields in a database:</p> <pre><code>&lt;div id="one"&gt;{data_one}&lt;/div&gt; &lt;div id="two"&gt;{data_two}&lt;/div&gt; &lt;div id="three"&gt;{data_three}&lt;/div&gt; </code></pre> <p>If none of these three div's have data, can I add some jQuery to hide another div?</p> <p>Thanks, Jack</p> http://stackoverflow.com/questions/1859171/jquery-check-if-onclick-exists-on-element 0 jQuery check if onClick exists on element Ei Maung 2009-12-07T10:33:18Z 2009-12-07T10:35:23Z <p>I found the way to <a href="http://stackoverflow.com/questions/1515069/jquery-check-if-event-exists-on-element">check if event exists on element</a>. But it's not work on the events which is not delegated by jQuery...</p> <p>When I try,</p> <pre><code>$("a").data("events"); </code></pre> <p>for this.</p> <pre><code>&lt;a href="#" onClick="alert('Hello, World!')" /&gt; </code></pre> <p>It returned undefined.</p> <p>Is there any way to check if <strong>onClick</strong> exists on elements with jQuery?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1858980/javascript-scope-issue 0 javascript scope issue unknown (google) 2009-12-07T09:56:12Z 2009-12-07T10:05:28Z <p>Code snippet as follows:</p> <pre><code>$(this).parents('td:first').next().find('option').customizeMenu('myMenu2'); </code></pre> <p>This works,but :</p> <pre><code>var listener = function(){ $(this).parents('td:first').next().find('option').customizeMenu('myMenu2'); }; listener(); </code></pre> <p>is not working,why and how to fix it?</p> http://stackoverflow.com/questions/1858816/jquery-executes-declared-function-without-me-clicking 0 jquery executes declared function without me clicking fayer 2009-12-07T09:25:03Z 2009-12-07T09:43:47Z <p>i wonder why the browser displays "logged in" without me having clicked on the link i id-tagged with clickhere. it displays it everytime i refreshes the page.</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function(){ function login(){ alert("logged in"); } $("#clickhere").click(login()); }); &lt;/script&gt; </code></pre> <p>i just want it to be displayed when i click on the link.</p> <p>what is the problem?</p> http://stackoverflow.com/questions/1638344/jquery-two-columns-sortable-and-cookie 0 jQuery - two columns - sortable and cookie? Newbie 2009-10-28T16:21:18Z 2009-12-07T09:00:01Z <p>Hello everybody!</p> <p>On my page I have two kind of columns with several conainers in it. Now I want to be able to sort these containers in these two columns. This was not really a problem. I can sort my containers in the two colums and toggle it on or off. But now my problem: I want to sort my containers on reload. I want to sort and toggle them the same order like before reload. So I need a cookie. But I have no idea how to do this.</p> <p>Please have a look at my code:</p> <pre><code> &lt;script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.draggable.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.sortable.js"&gt;&lt;/script&gt; &lt;style&gt; body{ font-size:12px; font-family:helvetica,verdana,arial,sans-serif; } h3{ margin:0; padding-top:5px; padding-bottom:5px; padding-left:5px; font-size:12px; font-weight:bold; } #box-left{ width:300px; float:left; } #box-right{ width:300px; float:left; } .box-border{ border:1px solid #333; margin-left:5px; margin-right:5px; margin-top:10px; } .container-header{ background:#efefef; cursor:move; } .container-header span{ cursor:pointer; float:right; margin-top:-20px; margin-right:5px; text-decoration:underline; } &lt;/style&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { $(".sortable-column").sortable({ connectWith: '.sortable-column' }); }); function toggleContent(container_id){ $('#' + container_id + ' .container-content').toggle(); } &lt;/script&gt; &lt;div id="box-left" class="sortable-column"&gt; &lt;div id="container1" class="box-border"&gt; &lt;div class="container-header"&gt; &lt;h3&gt;Box Nummer 1&lt;/h3&gt; &lt;span onclick="toggleContent('container1')"&gt;toggle&lt;/span&gt; &lt;/div&gt; &lt;div class="container-content"&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat adipiscing neque et convallis. Praesent semper dictum imperdiet. Fusce ultrices, felis ut lobortis facilisis, sapien sem hendrerit leo, nec convallis odio enim vitae risus.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="container2" class="box-border"&gt; &lt;div class="container-header"&gt; &lt;h3&gt;Box Nummer 2&lt;/h3&gt; &lt;span onclick="toggleContent('container2')"&gt;toggle&lt;/span&gt; &lt;/div&gt; &lt;div class="container-content"&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat adipiscing neque et convallis. Praesent semper dictum imperdiet. Fusce ultrices, felis ut lobortis facilisis, sapien sem hendrerit leo, nec convallis odio enim vitae risus.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="container3" class="box-border"&gt; &lt;div class="container-header"&gt; &lt;h3&gt;Box Nummer 3&lt;/h3&gt; &lt;span onclick="toggleContent('container3')"&gt;toggle&lt;/span&gt; &lt;/div&gt; &lt;div class="container-content"&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat adipiscing neque et convallis. Praesent semper dictum imperdiet. Fusce ultrices, felis ut lobortis facilisis, sapien sem hendrerit leo, nec convallis odio enim vitae risus.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="container4" class="box-border"&gt; &lt;div class="container-header"&gt; &lt;h3&gt;Box Nummer 4&lt;/h3&gt; &lt;span onclick="toggleContent('container4')"&gt;toggle&lt;/span&gt; &lt;/div&gt; &lt;div class="container-content"&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat adipiscing neque et convallis. Praesent semper dictum imperdiet. Fusce ultrices, felis ut lobortis facilisis, sapien sem hendrerit leo, nec convallis odio enim vitae risus.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="box-right" class="sortable-column"&gt; &lt;div id="container5" class="box-border"&gt; &lt;div class="container-header"&gt; &lt;h3&gt;Box Nummer 5&lt;/h3&gt; &lt;span onclick="toggleContent('container5')"&gt;toggle&lt;/span&gt; &lt;/div&gt; &lt;div class="container-content"&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat adipiscing neque et convallis. Praesent semper dictum imperdiet. Fusce ultrices, felis ut lobortis facilisis, sapien sem hendrerit leo, nec convallis odio enim vitae risus.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="container6" class="box-border"&gt; &lt;div class="container-header"&gt; &lt;h3&gt;Box Nummer 6&lt;/h3&gt; &lt;span onclick="toggleContent('container6')"&gt;toggle&lt;/span&gt; &lt;/div&gt; &lt;div class="container-content"&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat adipiscing neque et convallis. Praesent semper dictum imperdiet. Fusce ultrices, felis ut lobortis facilisis, sapien sem hendrerit leo, nec convallis odio enim vitae risus.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="container7" class="box-border"&gt; &lt;div class="container-header"&gt; &lt;h3&gt;Box Nummer 7&lt;/h3&gt; &lt;span onclick="toggleContent('container7')"&gt;toggle&lt;/span&gt; &lt;/div&gt; &lt;div class="container-content"&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat adipiscing neque et convallis. Praesent semper dictum imperdiet. Fusce ultrices, felis ut lobortis facilisis, sapien sem hendrerit leo, nec convallis odio enim vitae risus.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="container8" class="box-border"&gt; &lt;div class="container-header"&gt; &lt;h3&gt;Box Nummer 8&lt;/h3&gt; &lt;span onclick="toggleContent('container8')"&gt;toggle&lt;/span&gt; &lt;/div&gt; &lt;div class="container-content"&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat adipiscing neque et convallis. Praesent semper dictum imperdiet. Fusce ultrices, felis ut lobortis facilisis, sapien sem hendrerit leo, nec convallis odio enim vitae risus.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="container9" class="box-border"&gt; &lt;div class="container-header"&gt; &lt;h3&gt;Box Nummer 9&lt;/h3&gt; &lt;span onclick="toggleContent('container9')"&gt;toggle&lt;/span&gt; &lt;/div&gt; &lt;div class="container-content"&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat adipiscing neque et convallis. Praesent semper dictum imperdiet. Fusce ultrices, felis ut lobortis facilisis, sapien sem hendrerit leo, nec convallis odio enim vitae risus.&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>How can I set the cookie? I don't know much about javascript, sry.</p> http://stackoverflow.com/questions/441502/stop-the-jquery-autocomplete-plugin-from-forgetting-text-when-the-user-clicks-bac 3 Stop the jQuery autocomplete plugin from forgetting text when the user clicks back Glenn Slaven 2009-01-14T00:48:45Z 2009-12-07T05:59:57Z <p>I'm using the <a href="http://docs.jquery.com/Plugins/Autocomplete" rel="nofollow">jQuery autocomplete plugin</a> to get a list of locations, which works fine. But if the user clicks the browser's back button after submitting the page with the autocomplete textbox, the textbox is empty. If I take the autocomplete off the textbox and submit &amp; click back it remembers the text.</p> <p>Is there a way to stop the autocomplete from clearing the textbox when the page loads?</p> http://stackoverflow.com/questions/335409/jquery-getjson-firefox-3-syntax-error-undefined 5 jQuery .getJSON Firefox 3 Syntax Error Undefined Mike 2008-12-02T20:50:13Z 2009-12-07T05:00:33Z <p>I'm getting a syntax error (undefined line 1 test.js) in Firefox 3 when I run this code. The alert works properly (it displays 'work') but I have no idea why I am receiving the syntax error.</p> <p>jQuery code:</p> <pre><code>$.getJSON("json/test.js", function(data) { alert(data[0].test); }); </code></pre> <p>test.js:</p> <pre><code>[{"test": "work"}] </code></pre> <p>Any ideas? I'm working on this for a larger .js file but I've narrowed it down to this code. What's crazy is if I replace the local file with a remote path there is no syntax error (here's an example):</p> <p><a href="http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&amp;tagmode=any&amp;format=json&amp;jsoncallback=?" rel="nofollow">http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&amp;tagmode=any&amp;format=json&amp;jsoncallback=?</a></p> http://stackoverflow.com/questions/1857072/jquery-why-is-document-ready-not-firing-for-me 0 [jQuery] Why is $(document).ready not firing for me? fayer 2009-12-06T23:54:12Z 2009-12-07T02:22:08Z <p>In a php file i have used <code>include</code> to include the following js.php file and prior to that i have included the jquery file.</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function(){ alert("hello"); }); &lt;/script&gt; </code></pre> <p>But it doesn't work. Why? when I skip the $(document).ready function it works.</p> <p>But i need jquery code inside. what is wrong?</p> http://stackoverflow.com/questions/1857272/help-with-jquery-update-content-in-html 0 help with jquery update content in html fayer 2009-12-07T01:20:20Z 2009-12-07T02:20:27Z <p>i use jquery ajax to get data from php file.</p> <pre><code>data = &lt;option&gt;Peter&lt;/option&gt;&lt;option&gt;Maria&lt;/option&gt; </code></pre> <p>i want to then use jquery to put this data after the first option</p> <pre><code>&lt;select&gt; &lt;option&gt;Name&lt;/option&gt; &lt;/select&gt; </code></pre> <p>i cant use html() on select because then the first option will be deleted. what jquery function can i use to put them after the first one?</p> <p>EDIT: i cannot use append because then when i make another request and the data is:</p> <pre><code>data = &lt;option&gt;Michael&lt;/option&gt;&lt;option&gt;Erik&lt;/option&gt; </code></pre> <p>Peter and Maria will still be in the Select list. how can i do? I have tried to have a</p> <pre><code>&lt;div id=addhere&gt;&lt;/div&gt; </code></pre> <p>after the first option and then use html() but it doesnt work. Weird. how can i solve this?</p> http://stackoverflow.com/questions/1854066/jquery-how-to-delete-list-items-from-lists 3 jQuery: how to delete list items from lists? BahaiResearch.com 2009-12-06T00:41:58Z 2009-12-07T02:11:35Z <p>Is there a way with jQuery to remove all the LIs inside a UL with an id of 'myList'?</p> http://stackoverflow.com/questions/1855025/let-jquery-know-which-was-the-last-visited-php-page 0 let jquery know which was the last visited php page? fayer 2009-12-06T10:38:46Z 2009-12-07T01:14:59Z <p>this is a little bit tricky.</p> <p>usually when someone clicks on a link that requires him to register, this person will be redirected to the registration page and then back to the last visited page. this is possible cause the link sent a GET key through the url to the registration.php which uses the key to go back to last visited page.</p> <p>but i intend to use jquery ajax for registration. basically ive got 3 different php pages. all of them include the same header.php. and in header.php ive got a registration button which i have id tagged. when this button is clicked ( $(#registration_button).click()... ) jquery will show a box (a div that was hidden in the center of the browser) with registration information. then he will register and i will redirect him to the last visited page, that is to say the current one he sees. i have to refresh the php-page to be able to show all links that a registered user can see, thats why i have to use window.location.href.</p> <p>now to the question. how do i let jquery know which page is the current one he is visiting? ive got 3 php-pages.</p> <p>if there is something you dont understand, please free to ask. or if you got suggestions of other solutions, let me know. but i really want to display the registration box right away without redirecting him to another page.</p> http://stackoverflow.com/questions/1857158/adding-floats-with-javascript 0 Adding floats with javascript jpsilvashy 2009-12-07T00:36:19Z 2009-12-07T01:01:03Z <p>I'm using jQuery, and I want to sum up the values in my table column, everything seems to work fine, but my value is returned a string with all the values added like: <code>123.5013.0012.35</code></p> <p>How can I sum these properly?</p> <pre><code>var totals $(".add").each(function(i) { totals += parseFloat($(this).text()).toFixed(2); }); console.log(totals); </code></pre>