Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 20
1
2
3
11
>
Last
»
Showing results 1 to 25 of 500
Search took
1.18
seconds.
Search:
Posts Made By:
Lerura
Forum:
HTML & CSS
04-21-2013, 12:41 AM
Replies:
2
for god s sake.. please help with float
Views:
150
Posted By
Lerura
There is not enough space to the right of the...
There is not enough space to the right of the image to display the words.
If you changed wrote spam spam spam spam instead of spamspamspamspam
the float will place as many of the words as there...
Forum:
HTML & CSS
04-21-2013, 12:27 AM
Replies:
2
help with this easy code please
Views:
232
Posted By
Lerura
You can you CSS:<!DOCTYPE html> <html> <head>...
You can you CSS:<!DOCTYPE html>
<html>
<head>
<title>Loving the font changes</title>
<style>
li:nth-child(1) {font-family:Garamond;font-size:16px}
li:nth-child(2)...
Forum:
JavaScript frameworks
02-18-2013, 04:29 PM
Replies:
2
Need help removing default 'mute' setting
Views:
257
Posted By
Lerura
The function ModelPanel contains the line:var...
The function ModelPanel contains the line:var mute = true;Try changing it tovar mute = false;
Forum:
JavaScript programming
12-04-2012, 11:31 PM
Replies:
9
Problem array, if!
Views:
446
Posted By
Lerura
You can test if the value of foo is equal to one...
You can test if the value of foo is equal to one of the values in you array by:
var myArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
function number(foo){
return (myArray.indexOf(foo!=-1);
}
Old...
Forum:
JavaScript programming
09-05-2012, 12:29 AM
Replies:
4
object required?
Views:
310
Posted By
Lerura
This behaviour is as far as I can see implemented...
This behaviour is as far as I can see implemented in FF 15 too
Forum:
JavaScript programming
08-31-2012, 01:54 PM
Replies:
6
How to pass parameters to a closure?
Views:
692
Posted By
Lerura
you need to assign variable names for the passed...
you need to assign variable names for the passed values for each sub function:
divide: function(a,b){ in order to refer to the passed values.
if you inside each subfunction refers to a variable...
Forum:
HTML & CSS
08-08-2012, 09:57 PM
Replies:
13
Broke website, please help!
Views:
1,046
Posted By
Lerura
Then it is because the virus adds it to the page...
Then it is because the virus adds it to the page while it is transfered.
The only browser where it is not added is IE.
It adds a script that allows mrzwheremeread.info.br.ms:81/rem2.html to...
Forum:
HTML & CSS
08-08-2012, 05:01 PM
Replies:
13
Broke website, please help!
Views:
1,046
Posted By
Lerura
viewing the source code of your page it shows...
viewing the source code of your page it shows that there is a script starting with:
<script type='text/javascript'>var wow="mrzwhb2rb2mb2rb2b3db1infob1brb1ms";
and after that there is a lot of <a>...
Forum:
JavaScript programming
08-06-2012, 07:55 AM
Replies:
4
will not open new window in ie
Views:
424
Posted By
Lerura
remove the highlighted line:function...
remove the highlighted line:function hide_voted_popup() {
createCookie('sgvote6','yes','1440');
document.getElementById('vote_popup').style.display = "none";
...
Forum:
HTML & CSS
08-06-2012, 07:23 AM
Replies:
6
Best way to repeat an html code?
Views:
903
Posted By
Lerura
if you are already using javascript, you can just...
if you are already using javascript, you can just as well use Ajax:
function InsertFile(File){xmlhttp = new...
Forum:
XML
07-29-2012, 01:23 AM
Replies:
6
Closing tags in HTML vs. XHTML
Views:
2,226
Posted By
Lerura
I believe that recommending space before the...
I believe that recommending space before the slash, is because you have to separate attributes with a space:
eg:
<div id="MyDiv"style="color:blue"/> (invalid)
vs
<div id="MyDiv"...
Forum:
HTML & CSS
07-29-2012, 01:09 AM
Replies:
1
How would I create something like this?
Views:
486
Posted By
Lerura
As you here are using a tabular layout, with...
As you here are using a tabular layout, with several aligned cols and rows, i would say that a table is good.
<table id="UserX" style="border:0px;border-spacing:2px;">
<tr...
Forum:
XML
07-28-2012, 11:52 PM
Replies:
6
Closing tags in HTML vs. XHTML
Views:
2,226
Posted By
Lerura
When it comes to closing tags there are three...
When it comes to closing tags there are three kinds of tags.
Tags that have no closing tags aka singleton tags.
e.g. <br>, <hr>, <img>.
These tags requires the closing slash:
<br/> , <hr/> ,...
Forum:
JavaScript programming
07-25-2012, 02:19 AM
Replies:
18
Think Any Of You Can Code This? Plz Try
Views:
718
Posted By
Lerura
Not necessarily! The server is the computer...
Not necessarily!
The server is the computer where the document is stored, which can be the computer that you are sitting by right now.
Though you wil have to install the server-side languages on...
Forum:
DOM and JSON scripting
07-25-2012, 01:46 AM
Replies:
12
does getElementById only work with document?
Views:
839
Posted By
Lerura
Why do you think it is silly? You can only have...
Why do you think it is silly?
You can only have one node with each id throughout the document.
e.g.
...<body>
<div>
<div id="TheDiv">
</div>
<div>
<div id="TheDiv">
Forum:
JavaScript programming
07-25-2012, 12:56 AM
Replies:
5
Selecting link embedded in image
Views:
363
Posted By
Lerura
So what you are looking for is a page that...
So what you are looking for is a page that actually, automatically redirects to another page without any user action at all.
If so, I do not understand why you want to imitate a click onload,...
Forum:
JavaScript programming
07-24-2012, 07:48 PM
Replies:
5
Selecting link embedded in image
Views:
363
Posted By
Lerura
you can use onclick to make images imitate links:...
you can use onclick to make images imitate links:
<img src="ThePicture.png" onclick="GetLink()" style="cursor:pointer">
Then you have to create the function GetLink which will handle the...
Forum:
JavaScript programming
07-23-2012, 01:05 AM
Replies:
7
Login script, read & write to txt file?
Views:
758
Posted By
Lerura
I see no negatives here. Your client is...
I see no negatives here.
Your client is asking you to do the impossible.
1) Javascript cannot write to a file, - only read from it.
The only thing that javascript can write to is cookies and...
Forum:
HTML & CSS
07-23-2012, 12:04 AM
Replies:
3
HTML/CSS Images question, do they get reused??
Views:
329
Posted By
Lerura
You must remember that many mobile users pays per...
You must remember that many mobile users pays per byte downloaded, so the best would be to resize the image to the size needed.
And you should also avoid using background images when targeting...
Forum:
HTML & CSS
07-22-2012, 11:28 PM
Replies:
1
width of links within div
Views:
242
Posted By
Lerura
<a>s is inline elements which only have the width...
<a>s is inline elements which only have the width that is required to display the text inside.
nline elements does not allow a width to be set.
To set a width you need to change it to a block...
Forum:
JavaScript programming
07-22-2012, 12:38 AM
Replies:
7
Background based on Resolution with Javascript
Views:
740
Posted By
Lerura
it is better to use appendChild() than...
it is better to use appendChild() than document.write():
function ImportStyleSheet(File){var...
Forum:
HTML & CSS
07-10-2012, 02:05 AM
Replies:
1
Properly Add Padding to Child DIVs
Views:
299
Posted By
Lerura
you could lower the width and use percentage for...
you could lower the width and use percentage for the padding as well.
e.g.
<div style="padding:0.5%; float:left; width:19%;">col1</div>
you can you this formula ( 100 / number of columns ) - 1.1...
Forum:
HTML & CSS
07-09-2012, 02:35 AM
Replies:
3
parent font set with pixels and child font set with ems
Views:
367
Posted By
Lerura
Em is a relative unit, depending on the current...
Em is a relative unit, depending on the current font-size.
1.1em reads "1.1 times an "m" with the current font-size"
Pixels is also relative, but to the screen resolution.
(The lower the...
Forum:
JavaScript programming
07-08-2012, 06:46 PM
Replies:
1
how to turn on multiple buttons if there are multiple answers?
Views:
411
Posted By
Lerura
function addwindow(btn) { bts=btn.split(''); ...
function addwindow(btn) {
bts=btn.split('');
for (var i = 0 ; i < bts.length ; i++){
$('#answer'+bts[i]).addClass("answerBtnsOn");
}
}
Forum:
JavaScript programming
07-01-2012, 02:08 AM
Replies:
3
how to disable javascript in this template?
Views:
447
Posted By
Lerura
you must move the comma to the line above,- or...
you must move the comma to the line above,- or swap the line with the line above.
The comma acts as a separator between each of the setting, thus it have to be after all but the last setting.
...
Showing results 1 to 25 of 500
Page 1 of 20
1
2
3
11
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
01:45 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.