html

Is there anyway to turn off the url "cliking" sound in IE using html, javascript, or flash?

I have a flash application written in action script 2, and at one point it makes multiple back-to-back JavaScript requests using getUrl(). They have to be done as separate requests because IE had a limit on the length of a single request, and fails silently if that limit is passed. When ever this happens, if the user has their sound t...

how to send a POST value to a server with a PHP script waiting for it from iPhone app

Hi In my iPhone app - I am trying to get what the user types in a box emailed to me. I am going to use a PHP script sitting on my server, and try send the data to it for it to be processed. Promblem is... how do i do this? Im using the ASIHTTPRequest wrapper and have some code like this ASIFormDataRequest *request = [[[ASIFormDataReq...

Serialize model into Query string

Hi. Would it be possible to serialize a model object into a query string? I've no idea if this is even possible, but if not, what is the best way to do this? <% Html.RenderAction("Grid", "Grid", new { gridModel= ViewData["model"]}); %> The Model is containing ca 20 properties, and creating the querystring with them in individually wo...

How to include javascript generated text into html link?

I have a javascript that displays a generated text into a div: document.getElementById('phrase').innerHTML = phrase; PHRASE_TEXT_GETS_SHOWN_HERE Basically I'm trying to set up a link that will take the text and post it to twitter with a link: Clicky for tweety How can I include the generated text in the link? ...

Top Container Background Problem

Here's a screenshot: The red bar on the left is the background I set for the #personal div and I would like it to align to the top of the container, vertically. The problem is that I have a background for the #container-top div on top of the #container div with absolute positioning. Is there any way to move the #personal div up so th...

Separating Javascript and Html, when dynamically adding html via javascript

I am currently building a very dynamic table for a list application, which will basically perform basic CRUD functions via AJAX. What I would like to do is separate the visual design and javascript to the point where I can change the design side without touching the JS side. This would only work where the design stays roughly the same(i...

How do you override inline onclick event?

This seems deceptively simple. How do you override the onclick event in the following HTML using JavaScript? <a id="sample" href="..." onclick="alert('hello world')" />...</a> I've tried it with jQuery, but that didn't do the trick: $('#sample').attr('onclick','alert("done")') Assume the HTML is pre-written and cannot be changed, ...

possible to shrink contents of iframe?

Is there a way to shrink what's inside an iframe without adjusting css? any magical 'zoom' parameter out there?!!! I have a 600px preview iframe i want to fit a 1000px site in without scrollbars... ...

Javascript regex returning true.. then false.. then true.. etc

I have a strange problem with the validation I am writing on a form. It is a 'Check Username' button next to an input. The input default value is the username for example 'betamax'. When I press 'Check Username' it passes the regex and sends the username to the server. The server behaves as expected and returns '2' to tell the javascript...

What do I use to make a simple html gallery?

i'm trying to make the typical ecommerce site where you have different views of clothing and when you click it it becomes the main image. I'm assuming javascript would be best suited for this? maybe Jquery will be easier? Thanks I just need someone to point me in the right direction. ...

Page looks good in most browsers except in IE7...why

Hi, The following page looks good in Firefox, Safari, Chrome, IE6 and IE8... but it looks bad in IE7. I don't have IE7 but I need to fix this issue because someone seen it in IE7 and it looks bad. Does anyone has any idea why this page renders different in IE7?...and what is the solution to make it display correctly? http://www.aetna....

JavaScript and CSS order

Hi, I have an HTML file which is linked to CSS file and also to JavaScript file. Is JavaScript executed first and then the CSS is applied, or vice versa ? Is there any way to change the order ? Thanks ! ...

Make an element visible to the user but invisible to events

I'm not quite sure how to describe what I'm looking to do, but I'll do my best. At the moment I have a parent <div>, with absolutely positioned child <div>s within it, and I'm tracking the mouse pointer location coordinates relative to the element your mouse is over. At the moment, when I mouse over my child <div>s, I get the mouse loc...

Simple Tableless Positioning issue: Trying to float Div right on same line

Ok I just started a template for a website http://clickforclicks.com/design1/ I'm trying to make it tableless. Notice I have a red div along the side. I tried to get one on the otherside aswell that looked the same. But when I do it. It goes to a new line =[ How might I get this effect without using Javascript or Absolute positioning...

jQuery append HTML with javascript link

I have a situation where I should append html with jQuery. Within this html there is an a-tag with javascript as link. How can I solve this? $(".messages-wrapper").append('<li class="chat-wrapper"><a class="chat" href="javascript:openChat('http://domain.com/Messenger.aspx'"&gt;Chat öffnen<span></span><small>Chat öffnen</small></a></li>...

How to run javascript on an ajax output?

I am using jquery-ui tabs and ajax to load the content of the tabs. Here is my javascript: $(document).ready(function() { $("#tabs").tabs({ fx: { opacity: 'toggle' } }); $('.hd_item').hover(function() { //Display the caption $(this).find('span.hd_caption').stop(false,true).fadeIn(600); }, function() { ...

AJAX vs AHAH Is there a performance advantage?

My concern is performance, is there a reason to to send the client XML instead of valid HTML? Like most things, I am sure it is application dependent. My specific situation is where there is substantial content being inserted into the web page that has been pulled from a database. What are the advantages of either approach? Is the size ...

Checking For Word Wrap In Table Column

I'm writing part of a web page that allows a user to build a table and fill it with information. In the course of building the table, the user will be adding additional columns with headers. I'd like to code it so when the combined width of all the headers causes one of them to wrap that the table columns switch to using vertical text (w...

Can I load javascript code using <link> tag ?

Hello, Can I load javascript code using <link> tag in my website ? For example I have a javascript file, test.js, which contains the simple code alert('hello'); Can I make the popup window appear using: <link href="test.js"></link> Thanks ...

JavaScript - Detect HTML

Hello, I have an HTML textarea element. I want to prevent a user from entering any HTML tags in this area. How do I detect if a user has entered any HTML a textarea with JavaScript? Thank you ...