html

How can I get jQuery to call an event handler when an image actually appears on-screen?

How can I use jQuery to trigger a callback of a JavaScript function when I scroll down and see a picture? I wish to delay loading certain images until they actually appear on-screen... Ideally, I'd be able to do something like: $('#img#').look_on() { ... So no images are loaded apart from those I have seen. ...

Feedback form not displaying

I am trying to build a ajax feedback form but I am having problems getting it to display. The feedback image displays but when I click it nothing happens. My Form: <div id="feedback"> <img id="feedback_link" src="images/feedback.gif" href="javascript:open('feedback_form_wrapper');" /> <div id="feedback_form_wrapper" styl...

Javascript doesn't pull value

I have this piece of code: var categoryDetailId = $("#createEventForm-categoryDetail-idCategory").val(); and this html from myrendered page: http://erxz.com/pb/22844 When I hit the button it goes to Nan Update: I went in and set that and it didn't work still. I also have this one. var eventInformationId = $("#createEvent...

What is considered a fast or slow load w/ respect to a web page...

I just built a web page that is employing several different javascript elements. I am just curious as to what is considered a fast vs. a slow load time. Mine is coming out to be about 490ms w/ four different javascript pieces. Is that good, bad or average? Wondering if I need to optimize my js elements or not. ...

Plain and Rich text editor options in TinyMce editor

Hi, I am using tinymce editor to give good look of textarea where user write some comments.I want to give him two options one is plain text and the other is rich text editor option.When user click on plain text option all rich text option removed and when user click on rich text it will get all options of formatting text. I want to do t...

Is there someway to change the content of a page with the htaccess file?

Hi! I just wanted to know if there is someway to use the htaccess file to chnage the content of a page(s). Maybe something sort of like the redirect, but instead of sending the user to another page, it would just change the content of the whole page. Thank you for any and all help! ...

What are some of the best ways to plot/draw vector graphics on a HTML page?

I'm trying out some dynamic web page background generation using lines and text. Take a look at my demo at http://74er.net/labs/lines.html (just focus on the yellow line). It's a lame and inefficient method by literally creating a <span> element with 1 X 1 size and a yellow background with the X,Y position based on an ellispe formula....

Removing inline elements when importing HTML into DOMDocument or SimpleXML?

I have an external HTML source that I want to scrape and either transform into a local XML file or add to a MySQL DB. The external source is mostly normalized and (somewhat) semantic, so that all I need to do is use XPATH to get all td content or all li content, etc. The problem is that occasionally these items use <strong> or <b> or <i...

Multiple file upload. cloneNode of input fields with IE.

Hello, I want a form uploads some files to the server but I want it is transparent for user. I have a input tag outside the form which is cloned to the form with cloneNode() [Javascript] every time the user changes its value. The name of the input tag is "files[]". Mozilla Firefox clones the input correctly but IE doesn't copy its value ...

Disable HTML escaping in Django's TextField

How can I turn off Django's automatic HTML escaping, when I write into model's TextField? ...

PHP: using the eval function with HTML and PHP code

Hey guys, I currently have the following code coming from a database table: <h1 class="widgetHeader">My Friends</h1> <div class="widgetRepeater"> <p class="widgetHeader">Random Selection</p> <?php $friends = $user->getFriends(); ?> <p class="widgetContent"> <?php for ($i=0; $i<count($friends);$i++) {...

inline-block messes up with relative positioning

Hi, I have the following code: <HTML> <head> <style>div{border:dashed 1px silver}</style> </head> <BODY style="background: #fff;"> <div style="position: absolute; background: #0f0; width: 256px; height: 96px; overflow: scroll;"> <DIV style=" display: inline-block;position: relative;top: 64px; left: 32px;"> <DIV style="width: 18px...

Open browser windows without menu bars (JavaScript?)

The users in my community want the chat to be opened in a small window without all the control bars. So I think a popup window without scroll bars, location bar, status bar and so on would be the best solution. Right? What is the best way to have such a popup window? JavaScript? Can I do it like this? BETWEEN AND <script type="text...

How does Google achieve the fading effect on the home page?

If you go to google.com, you notice the menu on top slowly appears once you have mouse over the page. I was wondering what does Google use to control the fading effect? [edit] since I don't use jQuery, I don't want to include it just to use this feature ...

jquery how to get html table id above button after clicked

i have an html table followed by a button that says "Add Row" below it. WHen i click on the button, i would like to add a new row onto the html table but first i need to get the html table id above. is there anyway in jquery to say "Give me the id of the html table right before this button"> ...

Differences between type="image" and type="submit"?

(This question is related to this question) I've a simple form: <html> <head> </head> <body> <form name="aspnetForm" method="post" action="http://www.startupseeds.com/Default.aspx"&gt; <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="..." /> <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVAL...

<Title> tag being split accross multiple lines when genereated from MasterPage

I have created a website in VS 2008 (C#) that is using masterpages. In the ASPX pages that are based off the masterpage I'm using the @ PAGE title directive to set the title of the genereated HTML page. When I run the page on my development system the title displays correctly i nthe browser. However when I view the source code in the b...

What do people use to make websites?

Well, I know a little HTML, and I'm just interested in playing around with it. I was wondering, though, do people usually write websites from scratch, or do they use templates, or do they use WYSIWYG editors? To me, it seems like writing from scratch is unnecessary, nowadays, with the editors and templates we have, but maybe I'd be bett...

What does <link> tag do besides including stylesheets?

I know that the HTML <link> tag is used for attatching stylesheets, but looking at the W3CSchools tag reference, it has many other values for the rel attribute. I've looked all over the place, but I can't for the life of me find a place that describes in detail what the other values do and how they work. Can anyone send me to the right p...

Use CSS to hide non-anchor elements

I have a container that looks like this <div id="container">This container has a <a href="#">link</a> in it</div> I want to hide everything in it except the link. I've tried #container {display:none;} #container a { display:block; } But that doesn't work. It's a user style, so I have access only to the CSS. No Javascript. No m...