Something that is similar to the Cover Flow in iTunes.
I can use Adobe Flash, Flex, or pure html/javascript.
HOWEVER, I need a pointed to production ready code. I've looked at plenty of examples in both Flex and HTML that aren't ready for prime time. No demo code needed.
Here's my requirements for production ready:
1) Memory leaks...
I'm loading jQuery from google on my site (http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js) which is minned and gzip'd. In firefox, the jquery file shows as a 19k request, but Safari shows it as a 56k request. I'm assuming then that Safari is not accepting it as a gzip'd file. What's the deal? It's coming from google an...
hi all
i am resetting my form with the following:
<script type="text/javascript">
window.onload = function () {
document.getElementsByName("email_address")[0].value = "";
document.getElementsByName("remove")[0].value = "off";
}
</script>
the problem is that the checkbox "remove" seems to get reset before the server side script ca...
I'd like to display an IPv6 address on a web page, as done on
http://ipv6.whatismyv6.com/
What's the best way to do this? A code sample would be most awesome.
...
Hey folks,
I'm new here so please go easy on me. This is somewhat of a confusing situation. :)
I'm working on a search input in which a user enters a name of another user (or part of a name) in a search text box and then a list of users matching that search string is returned. The problem is that it is a bit slow when there are tens...
I'm writing some code that involves CSS tabs, but IE doesn't support the :target css3 attribute. I have a work around by checking the hash value in an interval (ew), but I want to only have that code run when :target is not supported. I would do the regular IE check, except early versions of Firefox do not support it, nor does early Safa...
Hello:
After some events in a tab, I would like to reload it. I need to send a parameter to the page that loads into the tab.
The following reloads the page: $("#tabs").tabs( 'load' , 6);
But, how can I send a parameter with it?
...
I have FB Connect on my site which allows users to authorize the site to access their FB profile data. I'm using the FB.Connect.showPermissionDialog function to initiate the connect process and grant permissions, how can I force it to always use the popup window connect dialog instead of the overlay method? My page has an incredible am...
I have a form which posts data to the same page. Based on the user's radio button selection I am inserting checked="checked" into the radio button form element to redisplay the correct selection. This works fine, however when the form is redisplayed (in case of bad input etc), I need a div to be revealed (containing the relevant fields f...
I was having a problem with IE finding both secure and non-secure items on a page. This seems to have been sorted thanks to a solution by David (many thanks!) who suggested altering the JS we use to display a gallery of images at the top of the page.
The issue now is that the gallery doesn't work!
Here's the error message:
Webpage er...
I see people use "window.onload" all the time, but why? Isn't the "window" part completely superfluous?
...
I am having this error in my code..
echo "<input type='button' value='send mails' onclick=\"sendmails(".$sendQuestion.")\">";
i kind of feel stupid posting this question. But i am unable to figure out whats wrong in this code
This code is written in php. it works fine is i dont pass any arguments in the sendmails function, but when i...
I just want to disable the "enter" key on the keyboard. The following script locks the whole keyboard down for some reason except for still allowing only the "enter" key to be used.
If this helps pinpoint what's missing or wrong, I'm using V.S. 2005, VB.NET 2.0, and I.E. 7.
<meta http-equiv="content-type" content="text/html; charset=w...
I have an asp.net Dropdownlist with autopostback enabled. It is not populated dynamically, its values are fixed in the HTML code :
<asp:dropdownlist id="ddlReportView" runat="server" autopostback="True" onselectedindexchanged="ddlReportView_SelectedIndexChanged" enableviewstate="true">
<asp:listitem text="Snapshot" value="SNAPSHOT"...
How do I attach a body onload event with JS in a cross browser way? As simple as this?
document.body.onload = function(){
alert("LOADED!");
}
...
http://www.s3fm.com/ is really useful for uploading/viewing files for personal viewing.
I was wondering if there was something good for social networks (using Amazon s3 or something similar),
where it will only show the subset of files uploaded by a specific user (for example, limit access to the user's specific bucket).
Can s3fm be a...
Is it possible to determine whether an element has a click handler, or a change handler, or any kind of event handler bound to it using jQuery?
Furthermore, is it possible to determine how many click handlers (or whatever kind of event handlers) it has for a given type of event, and what functions are in the event handlers?
...
Hello
I have an HTML document, with the jquery code
$(function(){
[...]
$("#newNotice").click(function(){
$("#properties").load("testDiagramm.html #NoticeForm");
return false;
});
function showFormValues(){
var s = $("form").serialize();
[... Do things ...]
}
$("input, texta...
I've been using JSLint to make me feel bad about my JavaScript. It is great, by the way. There is one check that I don't quite understand and I'd like your views, please.
From jslint.com:
In languages with block scope, it is usually recommended that variables be declared at the site of first use. But because JavaScript does not have bl...
I'm currently making a widget to take and display items from a feed. I have this working for the most part, but for some reason the data within the tag within the item comes back as empty, but I get the data in the and tags no problem.
feed is and xmlhttp.responseXML object.
var items = feed.getElementsByTagName("item");
for (var i...