active questions tagged unobtrusive-javascript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:25:28Z http://stackoverflow.com/feeds/tag/unobtrusive-javascript http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1790368/how-to-prevent-conflicts-between-mootools-and-prototype 0 how to prevent conflicts between mooTools and Prototype Wondering 2009-11-24T14:18:33Z 2009-12-16T23:26:44Z <p>Hi All, I know that jQuery.noConflict() is used to avoid conflict between $ of any other library and jQuery.(i.e. Prototype) But lets say, by any chance I am using Prototype, MooTools and jQuery.In that case jQuery.noConflict() will work fine for jQuery and any other library combination, but then what with Prototype and MooTools, if they both use $, how come code /browser will identify it properly. Note:I have never worked with Prototype and MooTools , so I am sorry if my question doesn't make any sense.</p> http://stackoverflow.com/questions/1852998/using-javascript-to-measure-the-current-window 0 Using Javascript to Measure the Current Window John 2009-12-05T18:28:01Z 2009-12-05T18:34:57Z <p>Ok, so I'm trying to build a website in which a large picture is the background. I want to be able to load a different size picture based on the user's window size so they (hopefully) don't see any blank space. I want to use JavaScript to measure the size of the current screen. Then, based on the size of the window, I would like to load in an image that corresponds to that resolution.</p> <p>However, when looking online, I could not find a standard way to get the window size in all browsers. Any help is very appreciated! Also, if you have another idea of how to implement this, let me know!</p> http://stackoverflow.com/questions/1827492/how-can-we-perform-reset-function-in-master-page-of-aspx-page 0 how can we perform reset function in master page of aspx page? Sikender 2009-12-01T16:54:00Z 2009-12-01T16:55:21Z <pre><code>function reset1() { alert("123"); document.form1.reset(); return false(); } </code></pre> <p>i want to reseting controls of master page.. using javascript but.it doesnt word properly.. can anyone help me to get through...</p> <p>Above is the function of reset which i used..for reseting..</p> http://stackoverflow.com/questions/1460664/unobtrusive-javascript-with-server-side-values-best-practice 5 Unobtrusive JavaScript with server side values, best practice? solfish 2009-09-22T15:06:01Z 2009-11-20T17:12:26Z <p>I'm used to do doing things like this:</p> <pre><code>&lt;a href="Javascript:void(0);" onclick="GetCommentForGeneralObservation(&lt;%# Eval("ID") %&gt;)"&gt; </code></pre> <p>That would be in a repeater or such like btw. However I an now trying to use unobtrusive JavaScript and hence get rid of any JS in the markup. I was trying to figure out what the best practice is in cases like this? I've used attributes and then got the value using JQuery to pass to the AJAX call but it seems a bit of a hack. </p> <p>Edit in light of first reply:</p> <p>I was thinking more of the </p> <p><a href="http://en.wikipedia.org/wiki/Unobtrusive%5FJavaScript" rel="nofollow">Separation of functionality (the "behavior layer") from a Web page's structure/content and presentation.</a> </p> <p>part of unobtrusive JS as I understand it.</p> <p>This happens to be for an application where I don't have to worry about Javascript being turned off on the client, it's hosted internally at my company. What I was getting at was how would I get the value from Eval("ID") into the JS call if I were to attach the onclick event in a separate .js file via JQuery. </p> <p>Sorry for not being clearer. I appreciate the need for progressive enhancement in public facing apps.</p> http://stackoverflow.com/questions/1749051/javascript-event-listener-mouseout 0 Javascript: Event Listener mouseout Matt 2009-11-17T13:53:39Z 2009-11-17T14:01:53Z <p>Hi guys, </p> <p>let me explain my problem. I have a mouseout event assigned to a div tag with an id of calendar. Now when this handler is called (when the mouse is not over the calendar div), i want to wait 2 seconds, then see if the mouse is still not over the calendar div. If the mouse i still out then do a function, if not then do nothing. </p> <p>I use the prototype javascript library. My code is as follows: </p> <pre><code>$('calendar').observe('mouseout', function (event){ setTimeout(/* call this event again */, 2000); } </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1724916/javascript-validation-for-net-dropdownlistbox-control 0 Javascript validation For .net dropdownlistbox control? Sikender 2009-11-12T19:52:28Z 2009-11-12T19:59:46Z <p>i have 3 dropdownlistbox..</p> <p>1.country 2.state 3.cities</p> <p>when i am seleting country name.. as per it..state name and city name change. in that if i am changing state name then city name is changed in dropdownlist box..</p> <p>using only javascript not postback of .net control.</p> <p>i have faced so much problem by making array of country,states and cities..</p> <p>i thought if i have list of names of countries,states and cities than how can i maintain array of it..</p> <p>so help me to getout of it. and give me good javascript to get out from this problem?</p> <p>thanks......</p> http://stackoverflow.com/questions/1638549/how-to-use-ajax-link-in-a-ajax-return-html-unobtrusively 0 how to use ajax link in a ajax return HTML unobtrusively DucDigital 2009-10-28T16:49:45Z 2009-10-28T18:42:41Z <p>I have a page, with ajax URL on it, ofcourse this page is applying unobtrusive javascript, let's call this page A. </p> <pre><code>&lt;div id="pageA"&gt; &lt;a href="additem?id=1&gt;Add this item&lt;/a&gt; &lt;/div&gt; &lt;div id="items"&gt;&lt;/div&gt; </code></pre> <p>when i click that URL page B return a div with a URL that suppose to be ajax link. the return something like this:</p> <pre><code>&lt;div class="item"&gt;This is 1 item &lt;a href="delete?id=3"&gt;Delete this&lt;/a&gt;&lt;div&gt; </code></pre> <p>so the page final will look like this:</p> <pre><code>&lt;div id="pageA"&gt; &lt;a href="additem?id=1&gt;Add this item&lt;/a&gt; &lt;/div&gt; &lt;div id="items"&gt; &lt;div class="item"&gt;This is 1 item &lt;a href="delete?id=3"&gt;Delete this&lt;/a&gt;&lt;div&gt; &lt;/div&gt; </code></pre> <p>the delete link tag from returned HTML suppose to run just like the additem link. but i dont know how to make this work. </p> <p>is there any way to keep this unobtrusive?</p> <p>thank you very much :)</p> <p>PS: IM using jquery</p> http://stackoverflow.com/questions/1619984/why-do-the-rails-helper-methods-prevent-unobtrusive-javascript 1 Why do the Rails helper methods prevent "unobtrusive JavaScript"? Lee Tang 2009-10-25T04:11:45Z 2009-10-25T04:42:33Z <p>I heard Ryan Bates say that the Rails JavaScript helper methods prevent "unobtrusive JavaScript". </p> <p>Is this correct and, if so, could someone explain why?</p> http://stackoverflow.com/questions/1612631/singleton-pattern-with 0 Singleton Pattern with {}? Ramiz Uddin 2009-10-23T10:39:58Z 2009-10-23T11:07:02Z <blockquote> <p>I apologize to move it from here as there was some confusion and thanks to Grey for answer this to realized the mistake. The topic has been moved to <a href="http://stackoverflow.com/questions/1612703/how-to-design-an-object-on-singleton-pattern-in-javascript">http://stackoverflow.com/questions/1612703/how-to-design-an-object-on-singleton-pattern-in-javascript</a> to discuss further.</p> </blockquote> <p>Singleton Pattern with '{}'. Here how it is:</p> <pre><code>var A = { B : 0 }; // A is an object? document.write("A is an " + typeof A); </code></pre> <p>Lets try to clone object <code>A</code></p> <pre><code>var objectOfA = new Object(A); objectOfA.B = 1; //Such operation is not allowed! //var objectOfA = new A(); var referenceOfA = A; referenceOfA.B = -1; document.write("A.B: " + A.B); document.write("&lt;br/&gt;"); </code></pre> <p>The above <code>referenceOfA.B</code> holds a reference of object <code>A</code>, so changing the value of <code>referenceOfA.B</code> surely reflects in <code>A.B</code>.</p> <pre><code>document.write("referenceOfA.B: " + referenceOfA.B); document.write("&lt;br/&gt;"); </code></pre> <p>If successfully cloned then <code>objectOfA</code> should hold value <code>1</code></p> <pre><code>document.write("objectOfA.B: " + objectOfA.B); document.write("&lt;br/&gt;"); </code></pre> <p><strong>Here are the results:</strong></p> <p><em>A is an object</em></p> <p><em>A.B: -1</em></p> <p><em>referenceOfA.B: -1</em></p> <p><em>objectOfA.B: -1</em></p> <p>Upto here everything is clear but an object should take <code>instanceof</code> on it. But here if you try to use <code>instanceof</code> with <code>A</code> you got an exception.</p> <p>Why?</p> http://stackoverflow.com/questions/1577757/do-you-plan-for-javascript-being-off 1 Do you plan for javascript being off? Sudhir Jonathan 2009-10-16T12:28:06Z 2009-10-17T21:59:29Z <p>I'm coding a fairly large and complex site by myself, so do you think I need to support javascript being turned off? </p> <p>Its a lot of extra work supporting full page postbacks for stuff I could quickly do with JSON and ajax. </p> http://stackoverflow.com/questions/1543518/jqueryui-without-javascript 0 jqueryui without javascript davidsleeps 2009-10-09T12:39:14Z 2009-10-09T12:46:37Z <p>Does anyone use jQueryUI (such as the CSS framework part) without the jQuery component? If you were catering for users who don't have javascript or who have it disabled etc</p> <p>A particular scenario would be the dialogs which are so brilliant and simple...without javascript its just a div though...would a potential solution be to have the dialog div with a class that positions it absolutely and above other elements and then to remove that class when jQueryUI sets up the dialog...so that if javascript cannot run the dialog still has the class?</p> <p>or would you use the css framework to create the dialog manually perhaps...</p> http://stackoverflow.com/questions/1527215/unobtrusive-javascript-obfuscates-event-handling 2 Unobtrusive Javascript Obfuscates Event Handling jessehattabaugh 2009-10-06T18:18:14Z 2009-10-06T20:30:47Z <p>You know what I liked best about obtrusive javascript? You always knew what it was going to do when you triggered an event. </p> <pre><code>&lt;a onclick="thisHappens()" /&gt; </code></pre> <p>Now that everybody's drinking the unobtrusive kool-aid it's not so obvious. Calls to bind events can happen on any line of any number of javascript file that get included on your page. This might not be a problem if you're the only developer, or if your team has some kind of convention for binding eventhandlers like always using a certain format of CSS class. In the real world though, it makes it hard to understand your code.</p> <p>DOM browsers like Firebug seem like they could help, but it's still time consuming to browse all of an element's event handler properties just to find one that executes the code you're looking for. Even then it usually just tells you it's an anonymous function() with no line number.</p> <p>The technique I've found for discovering what JS code gets executed when events are triggered is to use Safari's Profiling tool which can tell you what JS gets executed in a certain period of time, but that can sometimes be a lot of JS to hunt through.</p> <p>There's got to be a faster way to find out what's happening when I click an element. Can someone please enlighten me?</p> http://stackoverflow.com/questions/1399613/disable-link-with-the-prototype-observe-method 1 Disable link with the prototype observe method... enyo 2009-09-09T13:12:35Z 2009-09-10T00:30:32Z <p>I want to create a link like this:</p> <pre><code>&lt;a href="http://example.com"&gt;text&lt;/a&gt; </code></pre> <p>and replace the behavior so that the link downloads the content with Ajax instead when clicking.</p> <p>It is important for me not to replace the href attribute (so copying the link still works).</p> <p>One solution would be to do:</p> <pre><code>$('link').onclick = function() { return false; }; </code></pre> <p>but I would like to use the .observe method. But this doesn't work:</p> <pre><code>$('link').observe('click', function() { return false; }); </code></pre> <p>(which is quite logical).</p> <p>Any ideas on how I could achieve this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1226528/select-tag-reposting 0 <select> tag reposting Harish 2009-08-04T09:33:39Z 2009-08-04T09:36:59Z <p>After several failed attempts using ExtJS I have now decided to use javascript.The requirement is to assist a combo box in select tag.If the list contains aa,aaa,aab,abc,bac,cba then if I type 'ab' continuously then it will select 'abc'.Whereas if I type 'a' time gap and then 'b' it will select 'bac' instead of 'abc'. Can anyone tell me whether its possible in js to get what I want?If not js is it possible in Jquery.Please ignore the previous duplicates.</p> http://stackoverflow.com/questions/1168330/how-to-generate-different-links-on-web-page-if-javascript-is-enabled 1 How to generate different links on web page if JavaScript is enabled? Jakub Narębski 2009-07-22T21:22:25Z 2009-07-22T21:49:48Z <p>I am trying to follow tecnhique of unobtrusive JavaScript / graceful degradation. I'd like to serve page with different links when JavaScript is turned on, and when JavaScript is turned off. </p> <p>For example when JavaScript is turned off the link would be</p> <pre><code>&lt;a href="script.cgi?a=action"&gt; </code></pre> <p>and when JavaScript is turned on</p> <pre><code>&lt;a href="script.cgi?a=action;js=1"&gt; </code></pre> <p>(or something like that).</p> <p>Both versions (with JavaScript and without JavaScript) of link lead to server side script, but with different parameters. The version that is meant to be called when JavaScript is turned off performs more on server, therefore it would be unproductive to detect JavaScript there (e.g. redirecting from server script for non-JavaScript to the other version via <code>window.location</code>).</p> <p><strong>Note:</strong> I would prefer solution without using JavaScript libraries / frameworks like jQuery.</p> http://stackoverflow.com/questions/1126677/unobstrusive-javascript-for-digg-button 0 Unobstrusive JavaScript for Digg button? Iris 2009-07-14T16:53:51Z 2009-07-14T17:30:31Z <p>I want to add the Digg button on my webpage but don't want to add the script tag directly on the page.</p> <pre><code>&lt;div class="digg"&gt; &lt;script type="text/javascript"&gt; digg_url = ''; digg_bgcolor = '#99ccff'; digg_skin = 'compact'; digg_window = 'new'; &lt;/script&gt; &lt;script src="http://digg.com/tools/diggthis.js" type="text/javascript"&gt;&lt;/script&gt; &lt;/div&gt; </code></pre> <p>What are the some of the unobstrusive ways of adding the JavaScript for the Digg button?</p> http://stackoverflow.com/questions/864429/where-to-insert-script-blocks 1 Where to insert script blocks Pita.O 2009-05-14T16:41:13Z 2009-07-14T11:47:41Z <p>The dillema is like this:</p> <p>If I try to fit all the scripts blocks on the masterpage (include page in some frameworks), every page gets a copy of every script (including the ones they don't need) and these quickly adds up and bloats the page size.</p> <p>If I include/insert script blocks where needed, javascript will be spread all over the project.</p> <p>I am struggling with where to keep the right balance. Anyone?</p> http://stackoverflow.com/questions/794355/learning-javascript-for-a-total-non-programmer 1 Learning JavaScript for a total non-programmer olemarius 2009-04-27T16:51:39Z 2009-07-08T22:01:54Z <p>I code CSS/XHTML like it should be my mother language, and I do write valid, semantic code following guidelines of accessibility and such. </p> <p>But I want to learn Unobtrusive JavaScripting, but with a total non-programmer brain I need some motivation / tips / etc., like what's the best way to learn it, and how long does it take/did it take you before you could feel the power of knowledge? :)</p> <p>PS: I do have an understanding on how JavaScript works and changes the DOM etc.. I think it's more about learning the syntax by head instead of having to look it up.</p> <h3>See also:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/284452/suggestions-for-someone-starting-javascript-programming">Suggestions for someone starting javascript programming.</a></p> </blockquote> http://stackoverflow.com/questions/1080459/calling-javascript-from-sifr-replaced-anchor-tags 1 Calling javascript from sifr replaced anchor tags? Typeoneerror 2009-07-03T18:48:01Z 2009-07-04T08:00:00Z <p>I'm using sIFR to replace my navigation text with a new font:</p> <pre><code>&lt;ul&gt; &lt;li&gt;&lt;a href="#"&gt;about&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;reel&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;contact&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;archive&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;login&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p><hr /></p> <pre><code>sIFR.replace(futura, { css: [ '.sIFR-root { background-color:transparent; color: #999999; cursor:pointer; font-size:26px; text-transform:uppercase; }', 'a { color: #999999; text-decoration:none; }', 'a:hover { color: #CCCCCC; text-decoration:none; }' ], fitExactly:true, forceClear:true, forceSingleLine:true, selector: '#navigation ul li', transparent:true }); </code></pre> <p>That works just fine. I'm then trying to add some actions to the navigation using jQuery:</p> <pre><code>$(document).ready(function(){ $("#navigation ul li a").click(function(event){ event.preventDefault(); alert("nav clicked"); }); }); </code></pre> <p>These actions don't seem to be working though because the anchor tags are hidden by sIFR when the content is replaced. How does one add some jQuery code to replaced tags? I'd rather not do something like the following (and let javascript be called from Flash) as it sort of defeats the whole purpose of unobtrusive javascript:</p> <pre><code>&lt;a href="javascript:gotoSection('about');"&gt;about&lt;/a&gt; </code></pre> <p><hr /></p> <p><strong>Edit (generated HTML)</strong>:</p> <pre><code>&lt;ul&gt; &lt;li style="" class="sIFR-replaced"&gt;&lt;object width="88" height="37" class="sIFR-flash" type="application/x-shockwave-flash" id="sIFR_replacement_0" name="sIFR_replacement_0" data="/swf/bfuturah.swf" style=""&gt;&lt;param name="flashvars" value="id=sIFR_replacement_0&amp;amp;content=%253Ca%2520href%253D%2522/home/about%2522%2520target%253D%2522%2522%253EABOUT%253C/a%253E&amp;amp;width=55&amp;amp;renderheight=37&amp;amp;link=/home/about&amp;amp;target=&amp;amp;size=26&amp;amp;css=.sIFR-root%257Bcolor%253A%2523999999%253B%257Da%257Bcolor%253A%2523999999%253Btext-decoration%253Anone%253B%257Da%253Ahover%257Bcolor%253A%2523CCCCCC%253Btext-decoration%253Anone%253B%257D&amp;amp;cursor=pointer&amp;amp;tunewidth=0&amp;amp;tuneheight=0&amp;amp;offsetleft=&amp;amp;offsettop=&amp;amp;fitexactly=true&amp;amp;preventwrap=false&amp;amp;forcesingleline=true&amp;amp;antialiastype=&amp;amp;thickness=&amp;amp;sharpness=&amp;amp;kerning=&amp;amp;gridfittype=pixel&amp;amp;flashfilters=&amp;amp;opacity=100&amp;amp;blendmode=&amp;amp;selectable=true&amp;amp;fixhover=true&amp;amp;events=false&amp;amp;delayrun=false&amp;amp;version=436"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;param name="bgcolor" value="transparent"/&gt;&lt;param name="allowScriptAccess" value="always"/&gt;&lt;param name="quality" value="best"/&gt;&lt;/object&gt;&lt;span class="sIFR-alternate" id="sIFR_replacement_0_alternate"&gt;&lt;a href="/home/about"&gt;about&lt;/a&gt;&lt;/span&gt;&lt;/li&gt; &lt;li style="" class="sIFR-replaced"&gt;&lt;object width="58" height="37" class="sIFR-flash" type="application/x-shockwave-flash" id="sIFR_replacement_1" name="sIFR_replacement_1" data="/swf/bfuturah.swf" style=""&gt;&lt;param name="flashvars" value="id=sIFR_replacement_1&amp;amp;content=%253Ca%2520href%253D%2522/home/reel%2522%2520target%253D%2522%2522%253EREEL%253C/a%253E&amp;amp;width=42&amp;amp;renderheight=37&amp;amp;link=/home/reel&amp;amp;target=&amp;amp;size=26&amp;amp;css=.sIFR-root%257Bcolor%253A%2523999999%253B%257Da%257Bcolor%253A%2523999999%253Btext-decoration%253Anone%253B%257Da%253Ahover%257Bcolor%253A%2523CCCCCC%253Btext-decoration%253Anone%253B%257D&amp;amp;cursor=pointer&amp;amp;tunewidth=0&amp;amp;tuneheight=0&amp;amp;offsetleft=&amp;amp;offsettop=&amp;amp;fitexactly=true&amp;amp;preventwrap=false&amp;amp;forcesingleline=true&amp;amp;antialiastype=&amp;amp;thickness=&amp;amp;sharpness=&amp;amp;kerning=&amp;amp;gridfittype=pixel&amp;amp;flashfilters=&amp;amp;opacity=100&amp;amp;blendmode=&amp;amp;selectable=true&amp;amp;fixhover=true&amp;amp;events=false&amp;amp;delayrun=false&amp;amp;version=436"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;param name="bgcolor" value="transparent"/&gt;&lt;param name="allowScriptAccess" value="always"/&gt;&lt;param name="quality" value="best"/&gt;&lt;/object&gt;&lt;span class="sIFR-alternate" id="sIFR_replacement_1_alternate"&gt;&lt;a href="/home/reel"&gt;reel&lt;/a&gt;&lt;/span&gt;&lt;/li&gt; &lt;li style="" class="sIFR-replaced"&gt;&lt;object width="116" height="37" class="sIFR-flash" type="application/x-shockwave-flash" id="sIFR_replacement_2" name="sIFR_replacement_2" data="/swf/bfuturah.swf" style=""&gt;&lt;param name="flashvars" value="id=sIFR_replacement_2&amp;amp;content=%253Ca%2520href%253D%2522/home/contact%2522%2520target%253D%2522%2522%253ECONTACT%253C/a%253E&amp;amp;width=76&amp;amp;renderheight=37&amp;amp;link=/home/contact&amp;amp;target=&amp;amp;size=26&amp;amp;css=.sIFR-root%257Bcolor%253A%2523999999%253B%257Da%257Bcolor%253A%2523999999%253Btext-decoration%253Anone%253B%257Da%253Ahover%257Bcolor%253A%2523CCCCCC%253Btext-decoration%253Anone%253B%257D&amp;amp;cursor=pointer&amp;amp;tunewidth=0&amp;amp;tuneheight=0&amp;amp;offsetleft=&amp;amp;offsettop=&amp;amp;fitexactly=true&amp;amp;preventwrap=false&amp;amp;forcesingleline=true&amp;amp;antialiastype=&amp;amp;thickness=&amp;amp;sharpness=&amp;amp;kerning=&amp;amp;gridfittype=pixel&amp;amp;flashfilters=&amp;amp;opacity=100&amp;amp;blendmode=&amp;amp;selectable=true&amp;amp;fixhover=true&amp;amp;events=false&amp;amp;delayrun=false&amp;amp;version=436"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;param name="bgcolor" value="transparent"/&gt;&lt;param name="allowScriptAccess" value="always"/&gt;&lt;param name="quality" value="best"/&gt;&lt;/object&gt;&lt;span class="sIFR-alternate" id="sIFR_replacement_2_alternate"&gt;&lt;a href="/home/contact"&gt;contact&lt;/a&gt;&lt;/span&gt;&lt;/li&gt; &lt;li style="" class="sIFR-replaced"&gt;&lt;object width="110" height="37" class="sIFR-flash" type="application/x-shockwave-flash" id="sIFR_replacement_3" name="sIFR_replacement_3" data="/swf/bfuturah.swf" style=""&gt;&lt;param name="flashvars" value="id=sIFR_replacement_3&amp;amp;content=%253Ca%2520href%253D%2522/archive%2522%2520target%253D%2522%2522%253EARCHIVE%253C/a%253E&amp;amp;width=72&amp;amp;renderheight=37&amp;amp;link=/archive&amp;amp;target=&amp;amp;size=26&amp;amp;css=.sIFR-root%257Bcolor%253A%2523999999%253B%257Da%257Bcolor%253A%2523999999%253Btext-decoration%253Anone%253B%257Da%253Ahover%257Bcolor%253A%2523CCCCCC%253Btext-decoration%253Anone%253B%257D&amp;amp;cursor=pointer&amp;amp;tunewidth=0&amp;amp;tuneheight=0&amp;amp;offsetleft=&amp;amp;offsettop=&amp;amp;fitexactly=true&amp;amp;preventwrap=false&amp;amp;forcesingleline=true&amp;amp;antialiastype=&amp;amp;thickness=&amp;amp;sharpness=&amp;amp;kerning=&amp;amp;gridfittype=pixel&amp;amp;flashfilters=&amp;amp;opacity=100&amp;amp;blendmode=&amp;amp;selectable=true&amp;amp;fixhover=true&amp;amp;events=false&amp;amp;delayrun=false&amp;amp;version=436"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;param name="bgcolor" value="transparent"/&gt;&lt;param name="allowScriptAccess" value="always"/&gt;&lt;param name="quality" value="best"/&gt;&lt;/object&gt;&lt;span class="sIFR-alternate" id="sIFR_replacement_3_alternate"&gt;&lt;a href="/archive"&gt;archive&lt;/a&gt;&lt;/span&gt;&lt;/li&gt; &lt;a href="/archive"&gt; &lt;/a&gt;&lt;li style="" class="sIFR-replaced"&gt;&lt;object width="80" height="37" class="sIFR-flash" type="application/x-shockwave-flash" id="sIFR_replacement_4" name="sIFR_replacement_4" data="/swf/bfuturah.swf" style=""&gt;&lt;param name="flashvars" value="id=sIFR_replacement_4&amp;amp;content=%253Ca%2520href%253D%2522/login%2522%2520target%253D%2522%2522%253ELOGIN%253C/a%253E&amp;amp;width=50&amp;amp;renderheight=37&amp;amp;link=/login&amp;amp;target=&amp;amp;size=26&amp;amp;css=.sIFR-root%257Bcolor%253A%2523999999%253B%257Da%257Bcolor%253A%2523999999%253Btext-decoration%253Anone%253B%257Da%253Ahover%257Bcolor%253A%2523CCCCCC%253Btext-decoration%253Anone%253B%257D&amp;amp;cursor=pointer&amp;amp;tunewidth=0&amp;amp;tuneheight=0&amp;amp;offsetleft=&amp;amp;offsettop=&amp;amp;fitexactly=true&amp;amp;preventwrap=false&amp;amp;forcesingleline=true&amp;amp;antialiastype=&amp;amp;thickness=&amp;amp;sharpness=&amp;amp;kerning=&amp;amp;gridfittype=pixel&amp;amp;flashfilters=&amp;amp;opacity=100&amp;amp;blendmode=&amp;amp;selectable=true&amp;amp;fixhover=true&amp;amp;events=false&amp;amp;delayrun=false&amp;amp;version=436"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;param name="bgcolor" value="transparent"/&gt;&lt;param name="allowScriptAccess" value="always"/&gt;&lt;param name="quality" value="best"/&gt;&lt;/object&gt;&lt;span class="sIFR-alternate" id="sIFR_replacement_4_alternate"&gt;&lt;a href="/login"&gt;login&lt;/a&gt;&lt;/span&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> http://stackoverflow.com/questions/818745/how-do-i-implement-google-maps-yelp-com-style 0 How do I implement google maps yelp.com style? Craig 2009-05-04T04:05:05Z 2009-06-30T00:09:47Z <p>I have multiple locations (20+ per page) that need to be mapped on a single map. I would like to click on a link for the location that is <em>not</em> dynamically generated (for SEO purposes) that would open the info window for the respective marker on the map. </p> <p>Behavior should mimic <a href="http://maptheburg.com/" rel="nofollow">http://maptheburg.com/</a> - but this map has the sidebar links dynamically generated.</p> <p><a href="http://www.yelp.com/c/dallas/restaurants" rel="nofollow">Yelp.com</a> is the only site I have seen so far that manages to implement the Google Maps API with unobtrusive JavaScript.</p> http://stackoverflow.com/questions/1051666/why-does-it-say-xxx-is-not-a-function 0 Why does it say xxx is not a function Kettenbach 2009-06-26T23:13:53Z 2009-06-27T00:07:56Z <p>Hi All,</p> <p>why is this not ok?</p> <pre><code>aContract = function(){}; aContract.prototype = { someFunction: function() { alert('yo'); }, someOtherFunction: some$Other$Function }; var some$Other$Function = function() { alert('Yo yo yo'); }; var c = new aContract(); c.someFunction(); c.someOtherFunction(); </code></pre> <p>Firebug says c.someOtherFunction is not a function</p> <p>But this works just fine</p> <pre><code>aContract = function(){}; aContract.prototype = { someFunction: function() { alert('yo'); }, someOtherFunction: some$Other$Function }; function some$Other$Function() { alert('Yo yo yo'); }; var c = new aContract(); c.someFunction(); c.someOtherFunction(); </code></pre> <p>What am I missing here??? I prefer to code in javascript using the first method, which usually works fine, but doesn't seem to work correctly when I prototype.</p> <p>Thanks, ~ck in Sandy Eggo</p> http://stackoverflow.com/questions/1003482/how-do-i-get-a-rails-linktoremote-tag-to-make-a-delete-request-when-javascript 1 How do I get a Rails link_to_remote tag to make a DELETE request when JavaScript is disabled? Grant Heaslip 2009-06-16T19:22:57Z 2009-06-16T20:23:32Z <p>I'm using the following code as a link to delete a todo in a simple todo list application I'm making:</p> <pre><code>&lt;%= link_to_remote 'delete', {:url =&gt; complete_todo, :confirm =&gt; 'Are you sure?', :method =&gt; :delete}, { :href =&gt; url_for(complete_todo), :method =&gt; :delete } %&gt; </code></pre> <p>It works fine when JavaScript is enabled, but when it's disabled it makes a GET request to the server instead of the expected DELETE request, and therefore links to the todo's show page instead of destroying it. </p> <p>Because I'm trying to keep the application as RESTful as possible, I don't want to add a route to allow the destroy action to be run using a GET request.</p> <p>Any ideas what I'm doing wrong? Thanks in advance!</p> http://stackoverflow.com/questions/994856/so-what-if-custom-html-attributes-arent-valid-xhtml 8 So what if custom HTML attributes aren't valid XHTML? Constantine 2009-06-15T07:26:41Z 2009-06-15T15:12:37Z <p>I know that is the reason some people don't approve of them, but does it really matter? I think that the power that they provide, in interacting with JavaScript and storing and sending information from and to the server, outweighs the validation concern. Am I missing something? What are the ramifications of "invalid" HTML? And wouldn't a custom DTD resolve them anyway?</p> http://stackoverflow.com/questions/582652/best-way-to-signal-my-js-script-is-loaded 1 Best way to signal my JS script is loaded jro 2009-02-24T17:21:19Z 2009-06-02T07:17:44Z <p>I have a JS script that will be hosted on my server and that others will embed in their html, i.e.</p> <pre><code>...&lt;code for http://yoursite.com /&gt; &lt;script type="text/javascript" src="http://mysite.com/awesome.js" /&gt; ...&lt;code for http://yoursite.com /&gt; </code></pre> <p>My script surfaces an object with a bunch of properties accessible for use as a javascript Object(), i.e.</p> <pre><code>&lt;script type="text/javascript"&gt; //From http://mysite.com/awesome.js alert(Awesome.Name); &lt;/script&gt; </code></pre> <p>Due to the load time variance, it seems I need to signal that the "Awesome" object in my script is ready. I need this to stand on its own, so no dependencies on specific JS frameworks.</p> <p>Do I need to publish my own custom JS event, or does the simple fact that my script is loaded get captured by one of the existing page-level events? How else should I be doing this?</p> <p>UPDATE: as a point of reference, if I include the JS in an HTML page running from "http://mysite.com", the Awesome object is available and populated. When the JS file is included from another domain, the object is undefined at runtime.</p> http://stackoverflow.com/questions/938160/how-to-unobtrusively-update-the-page-title-with-js-in-rails 0 How to unobtrusively update the page title with JS (in Rails) Horace Loeb 2009-06-02T06:27:52Z 2009-06-02T06:39:23Z <p>Whenever I load a blog post onto the page with Ajax, I set the page <code>&lt;title&gt;</code> to "My Blog - BLOGPOST_TITLE".</p> <p>Of course "My Blog - " appears in my application layout as well.</p> <p>The question is, how do I tell my Javascript about the string "My Blog - " without duplicating it in my code?</p> http://stackoverflow.com/questions/726485/unobtrusive-jquery-autocomplete-in-rails 7 Unobtrusive jQuery autocomplete in Rails Horace Loeb 2009-04-07T16:04:41Z 2009-05-15T23:55:55Z <p>I'm using rails, but doing all my Javascript unobtrusively using jQuery in <code>application.js</code>.</p> <p>Unfortunately, this makes it quite difficult to reference URLs. For example, if I want to give a field autocomplete behavior, I have to hard-code the autocomplete URL in <code>application.js</code> since the rails <code>url_for</code> isn't available.</p> <p>Is it possible to make <code>application.js</code> use erb? Am I thinking about this the wrong way?</p> http://stackoverflow.com/questions/850804/update-two-different-parts-of-the-page-using-unobtrusive-js-in-rails-w-jquery 0 Update two different parts of the page using unobtrusive JS (in Rails w/jQuery) Horace Loeb 2009-05-12T01:50:35Z 2009-05-12T03:19:21Z <p>When the user clicks a sorting link on my blog, I want to use AJAX to both pull in new posts and update the sorting link section. This would be easy using RJS, but I want to keep my JS unobtrusive and respond to AJAX requests with only data (and no code).</p> <p>Here's what I'm doing now:</p> <pre><code> $('a.order_by').livequery('click', function() { $.get(this.href, null, function(data) { // The server returns a blob of HTML with a div#posts // and a div#sorting $("#posts").partial_html(data, "#posts"); $("#sorting").partial_html(data, "#sorting"); }); return false; }); </code></pre> <p>and here's the <code>partial_html()</code> function:</p> <pre><code>// Stolen from the jQuery source for $.load() jQuery.fn.partial_html = function(data, selector) { $(this).html($("&lt;div/&gt;").append(data.replace(/&lt;script(.|\s)*?\/script&gt;/g, "")).find(selector)); } </code></pre> <p>Obviously this is a bit disgusting -- what's the right way to do this? (It would be super-easy to use two <code>$.load()</code>'s, but that would require a superfluous HTTP request).</p> http://stackoverflow.com/questions/604571/delivering-a-javascript-library-for-web-developers 1 Delivering a javascript library for web developers jro 2009-03-03T00:03:51Z 2009-05-02T17:07:57Z <p>This is a broad-based question around delivering a javascript library that other web developers will use on their site. Here's the scope of my library:</p> <ul> <li>I'm providing a data service that's delivered in the form of a JS file. A similar implementation would be Google Analytics.</li> <li>Will always be hosted by me. Developers will simply use the @src attribute on the &lt;script&gt; tag.</li> <li>My library consists of an object (let's call it Jeff for now) with a set of properties. No methods, just values.</li> <li>The library isn't static, but is instead session-based. We're providing data points that can only be determined at request time. (Think of a web service normally called through AJAX, available at page-load.)</li> <li>This is not a free service; implementors will pay for usage.</li> <li>The Jeff object will always be returned, though not all properties may be populated due to a runtime error that happened back at my server. The Jeff object includes a Response section that indicates success/failure and a description.</li> </ul> <p>Now, to my question: what's ideal in terms of best practices for providing a service in the form of a JS library such as I've described? Standard Googling has not given me much to go on, but references to guidelines are greatly appreciated.</p> http://stackoverflow.com/questions/803642/best-practices-for-using-ajax-without-rails-built-in-helpers 0 Best practices for using AJAX without Rails' built-in helpers? Horace Loeb 2009-04-29T18:30:47Z 2009-05-02T16:50:03Z <p>In my blog application, some posts appear as excerpts -- i.e., the user sees the first (say) 500 characters, and can click a link to view the entire post. Here is the relevant partial:</p> <pre><code>&lt;% href = url_for post_path(:id =&gt; post) %&gt; &lt;h1 class="title"&gt;&lt;%= post.title %&gt;&lt;/h1&gt; &lt;h2 class="published_on"&gt;&lt;%= post.author %&gt; wrote this &lt;%= time_ago_in_words(post.published_on)%&gt; ago&lt;/h2&gt; &lt;div class="body"&gt; &lt;% if defined?(length) %&gt; &lt;%= truncate_html(post.body, :length =&gt; length, :omission =&gt; "&amp;hellip;&lt;h1&gt;&lt;a class='more' href=\"#{href}\"&gt;Click here for more!&lt;/a&gt;&lt;/h1&gt;") %&gt; &lt;% else %&gt; &lt;%= post.body %&gt; &lt;% end %&gt; &lt;/div&gt; </code></pre> <p>However, instead of "Click here for more!" taking the user to a separate page, I'd like it to populate the rest of the post inline. Currently, I've been implementing this by putting the above snippet in the following div:</p> <pre><code>&lt;div class="post" id="post_&lt;%= post.id %&gt;"&gt; &lt;%= render :partial =&gt; 'post_content', :locals =&gt; { :post =&gt; post, :length =&gt; 500 } %&gt; &lt;/div&gt; </code></pre> <p>I then use the id of this div in my application.js to do the AJAX:</p> <pre><code>$(document).ready(function() { $("a.more").click(function() { var url = $(this).attr('href'); var id = url.split("/")[2] $.get(url, null, function(data) { $("#post_" + id).html(data); }); return false; }); }); </code></pre> <p>This is obviously disgusting -- I don't want my javascript to depend on the location of the post's id in the link's href, but I don't know any other way for the javascript to know which post it is getting and therefore into which div the content should be inserted.</p> <p><strong>What's the best way to accomplish this? Should I just go back to using rails' AJAX helpers?</strong></p> http://stackoverflow.com/questions/633357/jquery-plug-in-to-hookup-ajax-form-must-provide-error-callback 0 jQuery plug-in to hookup AJAX form - MUST provide error callback Simon 2009-03-11T04:43:30Z 2009-04-10T18:32:26Z <p>Whats the best way to hookup AJAX functionality to an existing Form using jQuery and allow for an error handling callback.</p> <p>The <a href="http://docs.jquery.com/Ajax/jQuery.ajax#options" rel="nofollow"><code>jQuery.ajax(...)</code></a> built in function has the following (useful) callback functions:</p> <blockquote> <p>beforeSend </p> <p>complete</p> <p>dataFilter</p> <p>error</p> <p>success</p> </blockquote> <p>I thought I'd found my answer with the <a href="http://malsup.com/jquery/form/#getting-started" rel="nofollow">jQuery.Form</a> plugin, but for some crazy reason they don't give you access to an error callback!! Other than this omission it seems quite useful.</p> <p>I'm really dismayed in general by the amount of articles out there that recommend using <code>jQuery.get</code> before they would recommend <code>jQuery.ajax</code>. Just to recap: <code>get()</code> does not have an error callback, but <code>ajax()</code> does. </p> <p>In my opinion you should <strong>always</strong> use <code>ajax()</code> because you always should have <em>some</em> kind of error handling logic.</p> <p>Are there any other nice plugins - especially something that plays well with ASP.NET-MVC that I should use that make hooking everything up easier?</p>