Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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

 
Forum Jump

All times are GMT +1. The time now is 01:45 PM.