Hi All
I have a UK map made as a flash/swf movie. This map is embeded in a div tag and floated aright in a 2 column layout with a left column, a header and a footer.
I want the map to resize itself when the browser is being resized by the user or I want it to be resized as the left column's height increases and decreases. Basically the ...
I would like to use jquery to populate fields with default values. For example, say I have a field for email address and I want to add [email protected] in grey italic text in the box and the remove it once the user clicks on the field. Is there any good way to do this with a plugin or something? I would really like to avoid toggling an ...
The named anchor at the bottom of the page doesn't work more than once on an iPhone. Any suggestions? Thanks, Andy.
<html>
<head>
<title>anchor scroll test</title>
<meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
<meta http-equiv="content-type" CONTENT="text/html; charset=UTF-8">
<met...
I am currently working on a project where I need to secure access to downloadable files. The solution I want to implement is to have two buttons next to each document. One that says Editable and the other read-only (depending on the users permission they will see one of these or both). The editable will work normally with the browser dia...
Hello, I'm not new at CSS, but this is problem for me and I can't solve it. I need to build layout as below:
Divs that are at the bottom and at the top have fixed heights. The one in the center have to be exacly in the height of PAGE HEIGHT - DIV 1 HEIGHT - DIV 3 HEIGHT or in some cases smaller.
Also it have to had this size setted b...
Is there a way to display an HTML dropdown list with options in multiple columns?
I do not want multiple columns with one row of data, I want 3 rows of selectable options.
Is this possible via either .NET or jQuery?
...
Hello all,
I am making use of JQuery's autcomplete plugin. It works perfectly but in IE6, there are design issues.
I have a multi select tag underneath and when the autocomplete drops down the list of options its underneath the multi select tag! In all other browsers, this is fine but not in IE6.
What is the problem? This is the styl...
I have an index page, which consists of the content name, which is the url to the actual content.
And in a element under it a longer description.
Is there a way to associate this longer description to the link (for SEO) or may be it is not needed, as search engines will know this due to the content itself?
html for example
<dl>
<dt><...
This has probably been answered before, but I have spent some time looking and can't find an exact answer.
I have a parent div A that contains two divs B and C.
B and C are both floated left. C has no set height (grows w/ amount of text in it).
The problem: the parent A does not grow to the size of C. I know this has something to do...
Hello,
I'm having problem with jQuery Cycle plugin in IE8 (and other IEs as well)
I have 3 slides which contains Title, Description + Image.
The problem is that in IE8 the image is "blinking" / not loading at once (the bottom is cut off for a while is it displayed fully).
Before I had problem with the white BG under the slider, but I...
I have a page from which the user will be able to print. However, the page which will get printed is not the one the user is viewing, but rather a new one I'd like to generate on the background and (possibly) only show the print dialog for it.
Just to make things clear:
User is on "View.aspx" and clicks my Print button (not the browse...
I have this function in a script in the header (generated by Fireworks, it works):
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments;
document.MM_sr=new Array;
for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){
document.MM_sr[j++]=x;
if(!x.oSrc)
x.oSrc=x.src;
...
I am trying to get a handle on the state of the art regarding web site development and have several questions. Maybe I'll end up finding most of the answers on my own. I come from a background of C++ and Windows development, and generally I am befuddled by what seems to be the ad-hoc nature of web development.
I focussed in on Django, ...
I have a function that opens a pop up window:
function popUp(url)
{ leftPos = 0
topPos = 0
if (screen) {
leftPos = (screen.width / 2) - 150
topPos = (screen.height / 2) - 250
}
newWindow=window.open(url,'name','height=300,width=500,left='+leftPos+',top='+topPos);
if (window.focus) {newWindow.focus()}
when the user closes t...
Hello, i am experimenting with html and css and trying to figure out how to make this work... I am just trying to make the #menu float to the right of the h1 but be on the same baseline so... but obviously float:right makes it float to top-right? any way to make it float to bottom-right or align with the bottom of the containing div?
he...
I would like to make this form dynamic with prototype. I mean, the radio should be disabled, but when you chose one, with js, it should turn them enabled, same way if you chose the other one, the 1st should turn disabled.
This is my HTML, but I have no idea where to start with JS to make this work, thank you
<form id="uploadForm" metho...
The following URI works in my browser (getting back the intended xml file):
http://ipaddress:port/server/gate?Command=GET%26info
But when I write the following to work with jQuery, it doesn't. The response is 200 OK but I get a blank XML file.
$(document).ready(function() {
$.ajax({
type: "GET",
url...
<table id='tab' border='2'>
<tr><td width="33%">col 1,1</td><td width="33%">col 1,2</td><td width="33%">col 1,3</td></tr>
<tr><td width="50%">col 2,1</td><td width="50%">col 2,2</td></tr>
<tr><td width="33%">col 3,1</td><td width="33%">col 3,2</td><td width="33%">col 3,3</td></tr>
</table>
Helo I am trying to get all columns in a order...
i'm trying to send the value of the search textbox via jquery on keydown to the php page so that it can display the results containing the search keyword. however, the php page is not reading $_POST of the input textbox [not button].
html:
.keydown(function() {
//create post data
var postData = {
"bsearch" : $(this).va...
In my application, I have to fix all the closing tags of the <img> tag as shown below. Instead of closing the <img> with a >, it should close with />.
Is there any easy way to search for all the <img> in this text and fix the > ?
(If it is closed with a /> already then there is no action required).
Other question, if there is no "widt...