html

How to handle xml/html in git feature branch workflow ?

Our project is working within fairly close quarters code-wise (a lot of changes happening in parallel in a fairly small geographical area of the code), and our feature branch based git workflow works out really nice for our java code. But the xml/html stuff is not working really well. Simple unrelated changes (a designer adding a surro...

Do I use Cursor Hand and Cursor Pointer or both?

How do I use cursor hand cross browser? ...

Is there a way to make HTML.ActionLink Invisible by default?

I am trying to hide HTML.ActionLink by default when page first renders and then control it's visiblity based on the page the the user is on. Any suggestions? Thanks! ...

What is wrong with this validation?

Hi. I have had several threads about validating my textarea; for some reason it won't validate. The function that validates doesn't seem to be called at all. Here is the form simplified: <form name="annonsera" id="annonsera" method="post" enctype="multipart/form-data" onSubmit="return validateForm();"> <textarea name="annonser...

how can we date mask a text field using javascript / jQuery?

I am having a text field for date. Now i would like to mask this text field so that a user can input only date value. I even found a jQuery plugin for this. But that doesn't seems to help, as you can input 22/22/2222 in the field that too is accepted by this plugin, which is obviously not a valid date. What is the possible solution? ...

Image doesn't render when width and height are defined in percentage with <table> parent element

I'm trying to scale down an image by percentage and this renders correctly in Firefox, but not in Internet Explorer. The img tag needs to be inside a table. <TABLE> <TR> <TD> <img src="test.gif" width="60%" height="60%"> </TD> </TR> </TABLE> Is there a better way to do this so it works in both browsers? ...

DIV disappears on IE7 and IE6 when using margin 'auto' in a DIV inside li item

<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <title>Test</title> <style type="text/css" media="screen"> div.menu {position: relative; width: 600px; overflow: hidden;} ul.menu {display: block...

How do I prevent a line break occurring before an unordered list?

My web-app framework renders form errors for each field in an unordered list <UL> immediately following the invalid field. My problem is that I haven't been able to style things so that the error(s) are listed on the same line with the form field. A line break is instead rendered before the <UL>. This is the html that I'm trying to styl...

IE6 and IE7 do not handle margins properly on elements with height property

I have an h2 within a div. Both of them have borders. The h2 has a height attribute and a margin. When I view my page in IE6, IE7, or IE8 compatibility view, the h2 is all the way at the top of the div as if the margin is 0. However, if I view it in any other browser, the h2 has some space above it like I would expect. Can anyone tell m...

Parse HTML Page For Links With Regex Using Perl

Possible Duplicate: How can I remove external links from HTML using Perl? Alright, i'm working on a job for a client right now who just switched up his language choice to Perl. I'm not the best in Perl, but i've done stuff like this before with it albeit a while ago. There are lots of links like this: <a href="/en/subtitles/35...

Making sure HTML div goes to the bottom of the screen.

I currently have a site that uses a two-tone background image that is centered on the page. On top of the background I have a div that is cenetered as well, so that the background on the left and right sides of my content are different. However on a few pages where the content is shorter than the screen length, it leaves an ugly stripe...

Seamless FRAME/IFRAMEs (with reasonable scrollbars)?

Summary: I'd like to display a shopping cart from another domain underneath my fixed content in my page - and have the scrollbars come out properly. Details: I need to display a shopping cart from a vendor within a page on "my" site with "my" header on top. (Eventually the shopping will all be in a subdomain but not now, sigh.) Th...

unable to resize table beyond certain minimum width

Here is a demo page: http://bridgetandmisha.com/resize%5Fsizes.html# Why am i unable to resize one of the tables to be 400px using this code: $("#countProductSummaryDetailTable").width(400) Can someone tell me what html markup is preventing this? Also, i am able to resize another table on the page to 400px (but that is not what i n...

Ctrl+Enter jQuery in TEXTAREA

How do I trigger something when the cursor is within TEXTAREA and Ctrl+Enter is pressed? Using jQuery. Thanks ...

How do you make a div tag into a link

How do you make a div tag into a link. I would like my entire div to be clickable. ...

submit form with link while checking values

I have an HTML form defined as <form name="writeYourAd" id="writeYourAd" method="post" action="post.php?action=preview" onsubmit="return checkContentForm(this);" enctype="multipart/form-data"> If I use a , it works fine. But if instead I use this: <a href="#" class="mmh_orngebtn mmh_grybtn" onclick="javascript:document.writeYourAd.su...

refactor to use oop mvc

how do I refactor this to use oop , with mvc pattern. (function () { var dataToImage = { 'a': 'a.gif', 'b': 'something.gif' }; var currentimage = dataToImage['a']; function setCurrentImage(e){ currentImage = e.src; } function getMousePosition(){ } function drawToolbar { for(i in dataToImage){ document.write('<img sr...

Need to set 1 span's style to display:block on page load for an image gallery made up of span's set to display:none

i have some javascript in the head of a page that controls an image gallery where the user clicks a thumbnail image and a larger image and some text are revealed in a span. there are 10 of these thumbnails per page and i need to find out how to set the 1st thumbnail's hidden span to "block" on page load. <script type="text/javascript"...

Email and Reusable Token URLs

I'm building a site that offers functionality to users without requiring them to register. The idea is to send an email to the specified address containing a link with a token. That way the user would could this link anytime they want to make changes to the functionality. While I realize that there is no way to truly secure such a conce...

Iframe Injections in Websites

My website has been compromised. Some one have injected some iframe markup in my website. How they have done this? Only on my index.html, index.php page. But I have blocked write permissions for this page, then how they able to write in my pages. Will it effect other pages on my server? Is there any other solutions to block this? ...