active questions tagged javascript+jquery - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T16:50:32Zhttp://stackoverflow.com/feeds/tag/javascript+jqueryhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/799981/document-ready-equivalent-without-jquery6$(document).ready equivalent without jQueryFlySwat2009-04-28T21:51:11Z2009-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-file0How can i access server controls from my external JavaScript file?Colour Blend2009-12-07T16:27:03Z2009-12-07T16:43:12Z
<p>When i use this <code>"#<%= txtNumberOfDrugsInKit.ClientID %>"</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-highlight0Using the mouse to highlightvrish882009-12-07T16:07:46Z2009-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-load0Using jQuery with google.loadVANJ2009-12-07T16:00:33Z2009-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><p id="p">Content</p><button type="button" id="btn1">P</button>
<div id="div">Div</div><button type="button" id="btn2" onclick="btn2()">Div</button>
<script src="http://www.google.com/jsapi"></script>
<script>
function btn2() {
$("#div").toggle("slow");
}
google.load("jquery", "1.3.2");
google.setOnLoadCallback(function() {
$("#btn1").click(function () {
$("p").toggle("slow");
});
});
</script>
</code></pre>
http://stackoverflow.com/questions/1846179/float-issue-with-jquery-javascript-and-webkit0 Float issue with jQuery/javascript and WebKit Robin Jakobsson2009-12-04T10:43:35Z2009-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-jquery0Filtering mobile browsers by failure to execute using jQueryDug2009-12-07T15:36:59Z2009-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 >= 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-scrolling0Flyout menu with scrollingAustin McDaniel2009-12-07T15:45:41Z2009-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-opera0JQuery problem with html() handling in Operatechnix.in.ua2009-12-07T15:26:11Z2009-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><html>
<head>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<div id="debug">this is <em>test</em></div>
<script type="text/javascript">
var string1 = $('#debug').html();
var string2 = string1.replace(/<em>/g, '<strong>');
string2 = string2.replace(/<\/em>/g, '</strong>');
$('#debug').html( string2 );
</script>
</body>
</html>
</code></pre>
<p>In Firefox everything works and <em> tags are replaced with <strong>.</p>
<p>But in Opera <em>'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-t3When do you choose to load your javascript at the bottom of the page instead of the top?Colour Blend2009-12-07T14:58:57Z2009-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-maps1How can I detect internet conection in Asp.Net MVC to use Google Maps?Mariano2009-12-07T14:11:12Z2009-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-post0jQuery Datepicker to Trigger a POSTJ Siegal2009-06-18T18:58:53Z2009-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-rende1How to show Page Loading image/div/text until the page has finished loading/renderingShadi Almosri2009-12-05T22:24:13Z2009-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-jquery2Getting started with jQueryMoshe2009-12-07T03:16:11Z2009-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-cant0Why does jQuery use "new jQuery.fn.init()" for creating jQuery object but I can't?Soul_Master2009-12-06T22:40:11Z2009-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 & 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-jquery0how to generalize a click function in jqueryamir2009-12-07T11:14:33Z2009-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><div id="press_images">
<img id="s1" class="small" src="images/press/small/1.png" />
<img id="s2" class="small" src="images/press/small/2.png" />
<img id="s3" class="small" src="images/press/small/3.png" />
<img id="s4" class="small" src="images/press/small/4.png" />
.....
<img id="s13" class="small" src="images/press/small/13.png" />
</div>
<div class="big">
<a id="close">X</a>
<img id="b1" src="images/press/big/1.jpg" />
......
<img id="b13" src="images/press/big/13.jpg" />
</div>
$("#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-array1JQuery. How to load inputs values to an array?Semyon Perepelitsa2009-12-07T11:13:32Z2009-12-07T11:17:32Z
<p>I have multiple input fields.</p>
<pre><code><input type='text' size='10' name='firstname' id='firstname' />
<input type='text' size='20' name='lastname' id='lastname' />
<input type='password' size='5' name='password' id='password' />
</code></pre>
<p>I want to get all their values into a single array with jQuery. Like this one.</p>
<pre><code>1 => 'Barack',
2 => 'Obama',
3 => '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-onhover0jquery slow apply css class onhoverCapSoft2009-12-07T11:11:10Z2009-12-07T11:15:00Z
<p>hello,</p>
<p>current situation:
i have an <code><a href=""></a></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-error0toggling jquery animation getting errorPatrick2009-12-07T11:05:55Z2009-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-this0jQuery - If none of 3 id's have content hide thisJackson2009-12-07T10:34:28Z2009-12-07T10:41:09Z
<p>Hi All,</p>
<p>I have 3 div's drawing content from fields in a database:</p>
<pre><code><div id="one">{data_one}</div>
<div id="two">{data_two}</div>
<div id="three">{data_three}</div>
</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-element0jQuery check if onClick exists on elementEi Maung2009-12-07T10:33:18Z2009-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><a href="#" onClick="alert('Hello, World!')" />
</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-issue0javascript scope issueunknown (google)2009-12-07T09:56:12Z2009-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-clicking0jquery executes declared function without me clickingfayer2009-12-07T09:25:03Z2009-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><script type="text/javascript">
$(document).ready(function(){
function login(){
alert("logged in");
}
$("#clickhere").click(login());
});
</script>
</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-cookie0jQuery - two columns - sortable and cookie?Newbie2009-10-28T16:21:18Z2009-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> <script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
<script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
<script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.draggable.js"></script>
<script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.sortable.js"></script>
<style>
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;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$(".sortable-column").sortable({
connectWith: '.sortable-column'
});
});
function toggleContent(container_id){
$('#' + container_id + ' .container-content').toggle();
}
</script>
<div id="box-left" class="sortable-column">
<div id="container1" class="box-border">
<div class="container-header">
<h3>Box Nummer 1</h3>
<span onclick="toggleContent('container1')">toggle</span>
</div>
<div class="container-content">
<p>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.</p>
</div>
</div>
<div id="container2" class="box-border">
<div class="container-header">
<h3>Box Nummer 2</h3>
<span onclick="toggleContent('container2')">toggle</span>
</div>
<div class="container-content">
<p>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.</p>
</div>
</div>
<div id="container3" class="box-border">
<div class="container-header">
<h3>Box Nummer 3</h3>
<span onclick="toggleContent('container3')">toggle</span>
</div>
<div class="container-content">
<p>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.</p>
</div>
</div>
<div id="container4" class="box-border">
<div class="container-header">
<h3>Box Nummer 4</h3>
<span onclick="toggleContent('container4')">toggle</span>
</div>
<div class="container-content">
<p>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.</p>
</div>
</div>
</div>
<div id="box-right" class="sortable-column">
<div id="container5" class="box-border">
<div class="container-header">
<h3>Box Nummer 5</h3>
<span onclick="toggleContent('container5')">toggle</span>
</div>
<div class="container-content">
<p>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.</p>
</div>
</div>
<div id="container6" class="box-border">
<div class="container-header">
<h3>Box Nummer 6</h3>
<span onclick="toggleContent('container6')">toggle</span>
</div>
<div class="container-content">
<p>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.</p>
</div>
</div>
<div id="container7" class="box-border">
<div class="container-header">
<h3>Box Nummer 7</h3>
<span onclick="toggleContent('container7')">toggle</span>
</div>
<div class="container-content">
<p>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.</p>
</div>
</div>
<div id="container8" class="box-border">
<div class="container-header">
<h3>Box Nummer 8</h3>
<span onclick="toggleContent('container8')">toggle</span>
</div>
<div class="container-content">
<p>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.</p>
</div>
</div>
<div id="container9" class="box-border">
<div class="container-header">
<h3>Box Nummer 9</h3>
<span onclick="toggleContent('container9')">toggle</span>
</div>
<div class="container-content">
<p>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.</p>
</div>
</div>
</div>
</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-bac3Stop the jQuery autocomplete plugin from forgetting text when the user clicks backGlenn Slaven2009-01-14T00:48:45Z2009-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 & 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-undefined5jQuery .getJSON Firefox 3 Syntax Error UndefinedMike2008-12-02T20:50:13Z2009-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&tagmode=any&format=json&jsoncallback=?" rel="nofollow">http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?</a></p>
http://stackoverflow.com/questions/1857072/jquery-why-is-document-ready-not-firing-for-me0[jQuery] Why is $(document).ready not firing for me?fayer2009-12-06T23:54:12Z2009-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><script type="text/javascript">
$(document).ready(function(){
alert("hello");
});
</script>
</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-html0help with jquery update content in htmlfayer2009-12-07T01:20:20Z2009-12-07T02:20:27Z
<p>i use jquery ajax to get data from php file.</p>
<pre><code>data = <option>Peter</option><option>Maria</option>
</code></pre>
<p>i want to then use jquery to put this data after the first option</p>
<pre><code><select>
<option>Name</option>
</select>
</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 = <option>Michael</option><option>Erik</option>
</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><div id=addhere></div>
</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-lists3jQuery: how to delete list items from lists?BahaiResearch.com2009-12-06T00:41:58Z2009-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-page0let jquery know which was the last visited php page?fayer2009-12-06T10:38:46Z2009-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-javascript0Adding floats with javascriptjpsilvashy2009-12-07T00:36:19Z2009-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>