html

iframe tracking pixel security concern

Our application makes use of various tracking pixels and the way the information is sent to the third party tracker is by using the IMAGE tag and appending the information at the end of the url.(IMGAGE SRC="https://abc.com/a.php?username=bob&cost=22). The new 3rd party tracking pixel wants the above information in an IFRAME tag as s...

jquery: removing everything after an element

Hi, I have html code like this: <li> <a href=''>Example</a>&nbsp;<a href='' class='sub'>Edit</a>&nbsp;<a href='' class='sub'>Delete</a> </li> and I want to remove everything after the first </a>, including the spaces. What is the most elegant and simple way to do this? I have achieved my purpose with the following jquery: $('li').ch...

div doesn't take the whole height / is not 100%

here is the live link: http://mrgsp.md:8080/a/Account/SignIn the main div (green one) doesn't take 100% of the screen height you will notice this only if you have a big screen and the code is basically <body> <div class="loginpage"> <div id="loginbox">stuff inside loginbox</div> </div> </body> .loginpage { background:none repeat scr...

Problem with UIWebView

Hi, I am trying to launch an external safari when I click on a hyperlink in UIWebView but in my case nothing happens. If I try to include target as blank and skip the UIWebView delegate method it launches the safari within the same view..please guide me friends how to open an external browser when tapped on a link in UIWebView..here is ...

Jquery select all elements with an innerHTML that starts with a string?

I know you can use :contains to get elements who's innerHTML contains a certain string, but how can I get the elements whos innerHTML starts with a string? ...

jQuery visible targeting issue

I've made this script that lets you navigate through multiple divs with jQuery, but I want to make a css change to the parent if the 6th div is shown and using .is(":visible") hasn't given me any luck. $(document).ready(function() { /* Set the frame to #sf1 */ $('#sf2, #sf3, #sf4, #sf5, #sf6').hide(); /* Slide Animation for Nex...

Change javascript onlick event to jquery click and still pass parameters

Hi. I think I may be missing something or haven't grasped a fundamental of jQuery. I have searched for hours but yet to find an answer to my question. I've got an old website that I'm upgrading to use jQuery and many of the links call a JavaScript onClick call that passes multiple parameters, as per the example below: <a href="#" oncli...

Inconsistent #include css look

For some reason, I'm having a problem with these two pages on my website that should have some elements look the same, but for some reason, they look a little bit different. I have some included asp files which are linked to the same CSS files, so that is why I believe they should be the same. The spacing looks off on the about.asp pag...

ASP dynamic URLs from SQL Server database

Hey everyone, I have a database which contains my product info, which you can see connected to a catalog page here: http://www.marioplanet.com/catalog.asp I would like now, to have product pages created, with the URLs being generated by a certain name in my database. For example, if you point your browser to the link above, and look a...

HTML coding order versus layout question...

I want to design a site with header, navigation part and content... for SEO purposes I want the coding in the order of content, header and navigation area... but when viewing the site we want to see header first then navigation area then content... is there any way doing this ? ...

IE8 only submits with button, not submit?

So, this is strange, and it was working for me about a month ago, before I made a bunch of code updates. Anyways the issue is the live submit handler wont even run in IE8, however, if i run it on a button click, it works. See below: HTML <label>Add Attachment</label> <form class="file_upload" method="post" enctype="mult...

Degrading Unicode characters for web browsers with missing fonts

I am using the Unicode 'CHECK MARK' (U+2713) in a html document. I find that it renders OK in most browsers, but occasionally I encounter someone with a missing font on their PC. Are there any HTML / JS tricks to specify an alternative display character (or an image) if the font is missing? ...

Detecting mobile browsers on the web?

I'm curious to know how to check for iPhone, iPad and other mobile browsers.(JavaScript or CSS) Edit: Not user agent string, please. That can be faked. Possible Dupes: http://stackoverflow.com/questions/1005153/auto-detect-mobile-browser-via-user-agent and http://stackoverflow.com/questions/142273/standard-way-to-detect-mobile...

Should I include a <meta generator> tag?

Suppose I have some sort of proprietary web framework. Should I include a <meta generator="My framework"> tag in the generated files? I noticed that StackExchange 0.9 applications do that, and wondered what are the pros/cons of doing it. Does it have any effect, or is it just useful for people looking at the source to see? ...

How can you implement a grabbing cursor icon in Chrome?

I know it's possible to use a grabbing cursor icon in Chrome (in gmail, of course), but I can't figure out how to implement it in my code. I have tried (in CSS): body { cursor: grab; } body { cursor: -webkit-grab; } body { cursor: url(http://www.worldtimzone.com/mozilla/testcase/css3cursors_files/grab.gif); } help? ...

Removing HTML from user input in Perl and Catalyst

I'm using Catalyst for my Perl web app. What is the accepted way of removing HTML from user input? Currently I'm leaning towards using HTML::FormatText. But it seems strange to me that I can't find a utility built into Catalyst to do this common task. Have I just not found it? Also, it seems these modules for removing input take l...

Why does the width change when i change text size?

See this page i'm currently working on. http://lacrosselaundry.com/lacrosseLaundry/contact.php If i change the font-size for 6 from 14px to 18px it moves the form to the right. Why is that? I want the form to be all the way over to the right like when the h6 font is 18px, except i want the h6 font to be 14 px. How do I fix this and why...

iPhone apps development flexible UI

I have to make an iPhone app for a company which has a web based system, and wants to go mobile. Its known in advance that the UI of the screen will change fairly often (adding new labels, buttons, etc). Also, many elements on the screen have an If(condition) then (visible) else (hidden) type situation. For instance, if(user.isMember) th...

python check html valid

How can i check valid of html code with python? i need closed tags check, and braces in tags params. Such as |a href="xxx'| and other possible validations, wich libs i can use for this? ...

formatting date string for html table

Can someone show me how to change this date stamp and print this in an html table? I have an input file with this time stamp format: 4-Start=20100901180002 This time format is stored like this in an array. I print out the array like so to create an html table: foreach ($data as $row){ $counter ++; ...