• ARCHIVES 
  • » [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

[b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

liel_26@yahoo.com
» n00b
FTalk Level: zero
13
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

woot!! it worked!! thanks miss micky! i learned how to complie now.
jon11
» n00b
FTalk Level: zero
77
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

can u help me ... where can i find the link for tracker.php???
dheetiij's
» FTalkGeek
FTalk Level: zero
1019
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

^ [b]tracker.php[/b] is one of the file on your [b]wvm[/b] and [b]wvm[/b] means [b]whos viewed me[/b]..! just browse the trick and toturial then find those topics with the [b]wvm[/b] named included and you can find what you've looking there..! :eh:

Last edited by tjayvalrose_02 (2008-04-20 10:01:49)

punkpwinzes
» FTalker
FTalk Level: zero
191
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

ahm.. how can i make a js layout?..
sendokoru
» n00b
FTalk Level: zero
21
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

hey..can sumbody tell me where can i find the latest js linker?..pls..
bobcbar
» FTalkElite
FTalk Level: zero
5223
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

[quote=sendokoru]hey..can sumbody tell me where can i find the latest js linker?..pls..[/quote] Check the underground thread. =)
sendokoru
» n00b
FTalk Level: zero
21
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

geee thanks a lot mr bob..hehe..ur help is much appreciated..
jennychicc
» FTalker
FTalk Level: zero
205
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

tenx ! kip it up !:D
ree54
» n00b
FTalk Level: zero
51
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

somebody can help me?? if i want to compiling 2 or 3 scripts to 1 js 4 linker, example: scripts 1 [quote]if (typeof CFNAMES == "undefined") { CFNAMES = {}; } CFNAMES = { getData: null, sibling: null, init: function() { CFNAMES.getData = document.createElement("ul"); CFNAMES.getData.setAttribute("class","data"); CFNAMES.getData.innerHTML = "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span>"+ "<a style=\"font-weight: normal;\" href=\"/YOUR TEXT\">YOUR TEXT</a></li>"; CFNAMES.sibling = CFNAMES.getElementsByClassName(document.getElementById("content_0"),"ul","data")[0]; CFNAMES.sibling.parentNode.replaceChild(CFNAMES.getData,CFNAMES.sibling); }, getElementsByClassName: function(oElm,sTag,sClass) { var elm = []; if (!oElm)oElm = document; if (!sTag)sTag = "*"; var els = oElm.getElementsByTagName(sTag) || document.all; for (var i=0,j=els.length;i<j;i++) { if (new RegExp(sClass).test(els[i].className))elm.push(els[i]); } return elm; } };CFNAMES.init();[/quote] scripts 2 [quote]if (typeof MOREABOUT == "undefined") { MOREABOUT = {}; } MOREABOUT = { getElements: null, elements: { mainid: document.getElementById("content_6"), maintag: "span", mainclass: "q" }, init: function() { try { MOREABOUT.getElements = MOREABOUT.getElementsByClassName(MOREABOUT.elements.mainid,MOREABOUT.elements.maintag,MOREABOUT.elements.mainclass); MOREABOUT.getElements[0].innerHTML = "YOUR TEXT OR IMAGE"; MOREABOUT.getElements[1].innerHTML = "YOUR TEXT OR IMAGE"; MOREABOUT.getElements[2].innerHTML = "YOUR TEXT OR IMAGE"; MOREABOUT.getElements[3].innerHTML = "YOUR TEXT OR IMAGE"; MOREABOUT.getElements[4].innerHTML = "YOUR TEXT OR IMAGE"; }catch(e) { MOREABOUT.getElements = ""; } }, getElementsByClassName: function(oElm,sTag,sClass) { var elm = []; if (!oElm)oElm = document; if (!sTag)sTag = "*"; var els = oElm.getElementsByTagName(sTag) || document.all; for (var i=0,j=els.length;i<j;i++) { if (new RegExp(sClass).test(els[i].className))elm.push(els[i]); } return elm; } };MOREABOUT.init();[/quote] then, what should i do?? how about this: after compiling: [quote][b]//scripts 1[/b] if (typeof CFNAMES == "undefined") { CFNAMES = {}; } CFNAMES = { getData: null, sibling: null, init: function() { CFNAMES.getData = document.createElement("ul"); CFNAMES.getData.setAttribute("class","data"); CFNAMES.getData.innerHTML = "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span></li>"+ "<li><span class=\"q\">YOUR TEXT</span>"+ "<a style=\"font-weight: normal;\" href=\"/YOUR TEXT\">YOUR TEXT</a></li>"; CFNAMES.sibling = CFNAMES.getElementsByClassName(document.getElementById("content_0"),"ul","data")[0]; CFNAMES.sibling.parentNode.replaceChild(CFNAMES.getData,CFNAMES.sibling); }, getElementsByClassName: function(oElm,sTag,sClass) { var elm = []; if (!oElm)oElm = document; if (!sTag)sTag = "*"; var els = oElm.getElementsByTagName(sTag) || document.all; for (var i=0,j=els.length;i<j;i++) { if (new RegExp(sClass).test(els[i].className))elm.push(els[i]); } return elm; } };CFNAMES.init(); [b]//scripts 2[/b] if (typeof MOREABOUT == "undefined") { MOREABOUT = {}; } MOREABOUT = { getElements: null, elements: { mainid: document.getElementById("content_6"), maintag: "span", mainclass: "q" }, init: function() { try { MOREABOUT.getElements = MOREABOUT.getElementsByClassName(MOREABOUT.elements.mainid,MOREABOUT.elements.maintag,MOREABOUT.elements.mainclass); MOREABOUT.getElements[0].innerHTML = "YOUR TEXT OR IMAGE"; MOREABOUT.getElements[1].innerHTML = "YOUR TEXT OR IMAGE"; MOREABOUT.getElements[2].innerHTML = "YOUR TEXT OR IMAGE"; MOREABOUT.getElements[3].innerHTML = "YOUR TEXT OR IMAGE"; MOREABOUT.getElements[4].innerHTML = "YOUR TEXT OR IMAGE"; }catch(e) { MOREABOUT.getElements = ""; } }, getElementsByClassName: function(oElm,sTag,sClass) { var elm = []; if (!oElm)oElm = document; if (!sTag)sTag = "*"; var els = oElm.getElementsByTagName(sTag) || document.all; for (var i=0,j=els.length;i<j;i++) { if (new RegExp(sClass).test(els[i].className))elm.push(els[i]); } return elm; } };MOREABOUT.init();[/quote] [b]is'nt right???[/b] thx 4 help.
reseoj
» n00b
FTalk Level: zero
6
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

it relly helps me..tnx guys..=)
_nocke_
» n00b
FTalk Level: zero
1
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

i dont undestine...:question: what it's mean... please teach me=)
xXXloveTOMAXXx
» n00b
FTalk Level: zero
36
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

too bad. i really can't understand. :cry::cry::cry::cry::cry: please teach me how.
sweetnicole74
» n00b
FTalk Level: zero
25
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

nice....thanks....for sharing...:D=):):thumbsup::thumbsup::thumbsup:
Castillochondrion98gwapo
» n00b
FTalk Level: zero
4
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

OOhh Boy Im getting dizzy:o
bRandyTS
» FTalker
FTalk Level: zero
106
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

good :thumbsup:
sephimore
» n00b
FTalk Level: zero
22
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

newbie po ako.. panu po ba pagsasamahin ung js at css code?? panu din gumamit ng js code?? pede po ba gumawa kau ng screenshot?? plss..=(
karencute4
» FTalker
FTalk Level: zero
271
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

ahm...like i guess i have to familiarize myself with that code...a little confusing but i am sure it will help a lot...thanks for sharing...:)
karencute4
» FTalker
FTalk Level: zero
271
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

hi sephimore...we are not allowed to speak any other language aside from english in here...this is an international forum...:)
punkpwinzes
» FTalker
FTalk Level: zero
191
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

tnx 4 d info... it really helps me a lot... ______________________________ [img]http://i25.tinypic.com/2m47uq8.gif[/img] special tnx to: tinypic photoshop cs3 photobucket
mansur86
» n00b
FTalk Level: zero
5
0
1969-12-31

Re: [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

Hye my friends... I need help from you... I already created tracker.js... (from tracker.js fro. wvm threads) but I dunno how I can paste this js into my media box... please anyone give me sample code... if my js file is http://www.ripway.com/tracker.js ... Thanx in Advanced...
  • ARCHIVES 
  • » [b]First of all, please familiarize yourself with all the codes & take note of the difference between css & js.[/b] The topic here is about compiling js so don't be asking about css considered only if

Board footer

© 2024 F Talk

Current time is 14:37

[ 12 queries - 0.093 second ]
Privacy Policy