html

android HTML template as resource

is there any way to have an html file (i.e. an html template) be a resource in android? I'd like to reference it in a similar way that i store strings in the res/values/strings.xml. However, when i do this, it appears the HTML is not getting rendered correctly when i use myTextView.setText(Html.fromHtml(MessageFormat ...

Custom TextArea - Colors enabled (for an html editor)

I am looking for a tool/textarea that would provide a dreamweaver-like code area, or even notepad++, with code highlighting and intellisens, intelisens can be added afterward, but if its there its even better. The point is to add visual help to whoever is doing web editing with the component. Is there any kind of tool that could do this...

CSS absolute positioning elements inside a div

I have a .wall div with a some .toy divs inside it. I want to arrange the toys inside the wall just like http://goo.gl/4MqM. float:left property has done it for me nicely. Now the problem is I want to add position:absolute for the toy divs to make it draggable later. How can I do this either via Javascript or via CSS? Applying position...

Issue loading external files (CSS and JavaScript) in Safari

I'm having a bizarre situation here where my external site files, both JavaScript and CSS, are being interpretted as somehow corrupt on Safari browsers. The same site looks fine in Internet Explorer, but on Safari the javascript and css are being completely ignored. If I look at the files through the Inspector, I can see that Safari view...

Is there any way to make the HTML underline thicker?

I have a centered div with a nested h1 inside. Is there any way to underline it with a thicker line than the html default? ...

Insert SEO friendly dynamic data into HTML without Javascript

I have some static websites. By static I mean all the pages are simple HTML without JavaScript (all the data are hard-coded). I have a server side program that creates dynamic data that I'd like to insert into my static sites. By dynamic I mean the data changes very often. How should I do this? Here is a scenario: On the server side m...

Are file extensions needed in <img> tags?

I have a web application that will display logos. Some of the logos will be in GIF format. Some will be in JPEG format. I'd like to standardize a file naming convention, so that I can find the logo file given the company's Primary Key. For example "British Petroleum" has a PK of 1459, and their logo is stored in /Images/Logos/C1459 So ...

flash file on an image in html

hi guys, i am designing a website with graphics. i have a picture with lots of graphics and i have used 'usemap' to link each graphic portion to another link on the website. I do not want to modify this image, but on this image, there is the company's logo as part of the big jpg image. I want to put a flash file on top of this image, so ...

Simple php form = too simple to actually work?

Hey guys I'm sitting here wondering wheather this php contact form solution is too simple to actually work. Or, well it does work, but will it always work? Also, atm when you recieve the email, it says FROM: [email protected] which means that most mail clients will put it straight in the junkbox. How can I change it...

How can I get page's <title> tag's content if it can't be parsed as XML?

I'm using PHP libcurl to load a page. Now I need to get this page's <title> tag's content, and some other information too. I've tried to parse it using SimpleXML, but with no luck, because the page isn't valid XML. Can you suggest some other way to easily get contents of <title> tag? Thank you. ...

How do you make an HTML page fit the web browser size?

I'm trying to make a web page that only has content within the page itself. The page itself should not have scrollbars (although individual parts should have scrollbars). I want it to look very similar to how the Java API is laid out here, http://java.sun.com/javase/6/docs/api/, but without frames. The page needs to also be able to dyna...

Drop-Down menu not functioning as coded - jQuery

Hello, This is a code for a drop down menu. It is designed to drop-down (umdown) when the cursor moves over button. But when the cursor moves away from Multiple the umdown goes away. HTML markup: <div id="button"><span id="text">Down</span></div> <div id="umdown"> <div id="multi">Multiple</div> <div id="sd">Single</div> </d...

HTML + JavaScript + CSS compact tool

I need a tool which can minify, optimize and munge many files of those possible types HTML (minify only) JavaScript (minify, optimize and munge) CSS (minify) The final result should be one HTML file only with all JavaScript and CSS embedded or in the worst scenario 3 files respectively for HTML, JS, and CSS. I am aware of tools like...

How to guarantee that a named popup window is closed so that a new window with the same name can be created?

Using Internet Explorer (don't appear to have an issue in FireFox) the following code will occassionally raise an Error: Access is denied. Code: 0 The line in question is the second window.open. currentDialog = window.open("error.html", name, "width=20 height=20 left=50 top=70", true); if (currentDialog != null) currentDialog.clo...

Insert html via .before() jquery

Right i'm trying to insert some basic html before a div like this <script>$("div#header").before("<div class="test">test</div>");</script> However nothing appears, but when i try the jquery example <script>$("p").before("<b>Hello</b>");</script> it works, what i'm i doing wrong? Thanks ...

Making an entire <div> become a link?

Is there a way to make the entire area of a <div> be a proper link? Right now I'm doing this with javascript using the onclick but this is not good since if I middle click it (on firefox) it doesn't open at all ...

PSD slicing good practices

Hello guys, I'm managing the development of a website (new job) and we are currently on the slicing phase of the template, and I hear a lot of things of what we should and should not do while slicing... so what are the good practices you experienced developers do? What formats should the images be? Html conformation level (strict, trans...

Get the selected element's HTML Tag in JavaScript

I know you can do this, but every time I Google it I get how to select all elements of a certain tag. So, e.g.: alert($('#my-wrapper').someJSMethod()); {...} <div id="my-wrapper"></div> Would alert "DIV" actually. I'm selecting elements with jQuery by the way. ...

What is the Microsoft version of an embedded Java web applet?

What is the Microsoft version of an embedded Java web applet? Is there a good example of one on the web? Also, why is the dynamic web dominated by ajax and not embedded applications? ...

jQuery Table manipulation

Trying to manipulate a table with jQuery, and I just cannot seem to get it to work properly. The empty works just fine, but I cannot add content back onto the table after. Any suggestions on what I may be doing wrong? <table id="schedualtable"> <tbody id="sortable"> <tr><td></td></tr> </tbody> </table> $('#schedualtabl...