|
More site info...
JavaScript | Forum profile
|
|
Forum profile page for JavaScript on http://www.webdeveloper.com.
This report page is the aggregated overview from a single forum: JavaScript, located on the Message Board at http://www.webdeveloper.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "JavaScript" on the Message Board at http://www.webdeveloper.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on JavaScript:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
367
|
1,216
|
3,354
|
|
Post:
|
1,216
|
4,340
|
9,556
|
|
|
JavaScript Posting activity graph:
|
Top authors during last week:
user's latest post:
onclick(I think) coding assistance
Published (2009-11-26 12:08:00)
If you escape the quotes correctly. Don't use (double) break elements. Use css: Code: <a style="display:block;margin:1em 0;" href="www.mypage.com" ta ...
user's latest post:
Ajax not working on Safari?
Published (2009-11-28 14:56:00)
My guess is that it is not the AJAX request's fault. The problems migh be either related on the way you have HTML (or XHTML) coded your document or on the way you have (or JQuery did) inserted the data and the new elements into the DOM tree of your document. It is hard to give you an answer without the whole picture. In this cases, JQuery library brings more inconveniences than help. In case of error it is almost impossible to follow...
user's latest post:
Merging arrays
Published (2009-11-28 19:25:00)
You're most welcome. Happy to help. Good Luck!
user's latest post:
Ajax not working on Safari?
Published (2009-11-28 18:53:00)
When looking at the page I'm seeing some bizzare looking code: Quote: <div id="content_7" class="contenedor" style="display: block;"> <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type"/> <title>GalerĂa Samantha Catering</title> <link...
user's latest post:
Onclick createelement insertrow...
Published (2009-11-23 10:42:00)
forty2 I'm not sure if this is what your suggesting I do (is the purple text being excludable?) but I'll try it later: Code: var carttable = top.frames['register'].document.getElementById('carttable'); var cartbody = top.frames['register'].document.getElementById('cartbody'); var cartfoot = top.frames['register'].document.getElementById('cartfoot'); var subtotal =...
user's latest post:
HELP! Dependant Drop Down Box...
Published (2009-11-27 11:15:00)
the first 2, var PR and BM, using the first option from each as example, do not have "" around the option values PR ["ANSI 125", 1], BM ["Cast Iron", 1], Where as var TM does as shown below ["Bronze", "1"], will this make a major difference, im getting myself in a bit of a mess with this to be honest, think i tried to run before i could walk and all that....
user's latest post:
Show/Hide div problem
Published (2009-11-27 06:13:00)
"id" is a bad name to call a variable. It is an HTML attribute. Change the variable to something else, like "currId"
user's latest post:
onkeypress event handler...
Published (2009-11-27 14:17:00)
Code: window.onload = function(){ var textarea = document.getElementsByTagName("textarea"); for (var i=0; i<textarea.length; i++){ textarea[i].onkeypress = function() { return (this.value.length <= 10); }; } }; Although actually you don't really need javascript for this, if you switch to regular text inputs since you are using such a short limit anyhow you could use the maxlength attribute of text...
user's latest post:
Javascript tweaking - Page 2 -...
Published (2009-11-25 13:05:00)
I've noticed that the variable "f" Is being used for somthing. E.X.: f.innerHTML = str; f.style.width = '100%'; f.style.height = fullheight+'px' I'm not sure about this code, I found it, and I'm stumped. Really, all I want is a locked image with link combo.
user's latest post:
using Ajax to update table cells
Published (2009-11-27 01:41:00)
That did not work, now I get a runtime error: Code: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3) Timestamp: Fri, 27 Nov 2009 06:39:31 UTC Message: Object expected Line: 1 Char: 1 Code: 0 URI: index.cgi?pg=product_line_ajaxv&choice=Checkout...
|
|
|
|
Latest active threads on JavaScript::
Started 1 day ago (2009-11-29 21:52:00)
by sher_amf
resolved.... it seems the initialization of jquery has been doubled
Started 1 day, 3 hours ago (2009-11-29 18:31:00)
by alanpvegas
Forgot to add that the end result should be two lines, something similar to:
(current date...or the inputted date in "var Today=new Date")
(output text based on date)
Started 1 day, 2 hours ago (2009-11-29 20:19:00)
by JMRKER
You'll need to post the JS and HTML as the code you provided doesn't do anything on it own.
Started 1 day, 1 hour ago (2009-11-29 20:59:00)
by A1ien51
You have to include a JSONP parameter which the external site will include in the page.
JSONP creates a function and wraps it around the JSON object.
Docs explain it: http://docs. jquery.com/Ajax/jQuery.getJSON
Eric
Started 1 day, 1 hour ago (2009-11-29 20:56:00)
by A1ien51
What is the problem? Saying it doesn't work does not tell us anything.
Doctor: Why are you here?
Patient: I am sick.
Doctor: What is the exact problem?
Patient: I am sick, DUH!
If I pull out my magic crystal ball, I would say pop up blocker.
Eric
Started 1 day, 1 hour ago (2009-11-29 20:51:00)
by A1ien51
What is the error message? What is the problem? What browser(s)? More details = better answers.
Eric
Started 1 day, 12 hours ago (2009-11-29 09:35:00)
by Specht08
Hi
@1:
you can use the split function with an empty string as attribute: string.split(""); put this into a variable and check every index of the array with a switch expression:
Code:
var a = "Hello World";
var b = a.split("");
for(i in b){
switch(b[i]){
case "a": ....; break;
case "b": ....; break;
.....
}
}
@2: once again use split(), go ...
Started 1 day, 4 hours ago (2009-11-29 18:16:00)
by gohaun
Sorry about the double post, thought i could edit, and i dont see it anywhere...
Code:
snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "snow.gif" : snowsrc
for (i = 0; i < no; ++ i)
How do I change that to something with photobucket.
the link to the picture that i need is this,
http://i579.photobucket.com/albums/s...un16/snow3. gif
Any links to tell me what the !=-...
|
|
Hot threads for last week on JavaScript::
Started 5 days, 10 hours ago (2009-11-25 11:33:00)
by Fang
Is the combination of all selected dropdown values the name of the pdf document?
Started 6 days, 13 hours ago (2009-11-24 08:26:00)
by Kevin's Dog
Guys, I'm sorry i may of made some typing mistakes, it happens alot with me
Started 1 week, 2 days ago (2009-11-21 19:00:00)
by donatello
Yes you can use it on anything you want since it is only rotating images from what I can see by looking at the CSS and script. You can probably build a simple text-as-image generator using the PHP GD library. Color the text images the same way as the slices of png images on your sample.
Better to learn Flash.
This effect can be rather annoying though... imagine a whole page of changing ...
Started 3 days, 19 hours ago (2009-11-27 02:59:00)
by Perfidus
Is this impossible?
Nobody will give me a hand?
I can't find it?
Started 1 week, 1 day ago (2009-11-22 05:17:00)
by ruthand99 Registered User
Hi all,
I am using a global page call for link formatting ( HEAD tag):
A:hover {color:"#cc6600"; text-decoration:none; font-weight:bold}
Now, what i want to know is:
How can I, in an individual link, override this (the bold thing)?
With the OnMouseOver on the anchor tag of that link?
If so, what would the OnMouseOver command exactly be?
Isnt there any better way ...
Started 3 days, 21 hours ago (2009-11-27 01:06:00)
by fripp fripp is offline Registered User
so i don't have to keep writing "document.write" all the time...
is it possible for me declare that as a variable?
* i tried versions of this (below) but they don't work:
var echo=document.write;
var writer="document.write";
thanx
Started 6 days, 11 hours ago (2009-11-24 10:47:00)
by svidgen
You're trying to eval() incomplete JavaScript. You either need to fully define the function (by providing a name), or strip the function "envelope" away completely:
HTML Code:
function (a, b) {
return a+b;
}
to
HTML Code:
a+b
Started 4 days, 16 hours ago (2009-11-26 06:10:00)
by Jester Registered User
Hey guys,
Got the following javascript to work in IE, but doesn't seem to work in Chrome/Safari etc. Can someone suggest something to the alternative?
Code:
function EditDept(dept) {
var deptValue = document.deptAdd.deptNameSel.options[document.dept Add.deptNameSel.selectedIndex].text
window.locat ion="http://server.com/departments.php?action=edit &name="+deptValue
}
...
Started 3 days, 16 hours ago (2009-11-27 06:14:00)
by opifex
The best place for specific questions for FCKEditor and CKEditor is their own forum where the developers are lurking about. You can configure CKEditor to do almost anything you need... see the docs .
Hope this helps to get you on the right track.
Started 1 week, 2 days ago (2009-11-21 05:56:00)
by janmartin Registered User
Hi,
I need to automatically display the images exif data, but it only works after clicking the image.
Whats wrong?
(Not) working Example:
http://www.diystreetview.org/data/test/test.html
all files:
http://www.diystreetview.org/data/test/
Code:
<html>
<head>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript" ...
|
|