Magic Zone (javascript&java)
36 replies
Avatar
Emo_CutE_GiRl_
2013/09/29 17:06
This topic is part of 2wapworld Club topic id: 3203220 related to nature club We are going to include javascript in Magic Club that teach you how to change your normal phone into smart phone , Now you will be able to create own SMARTY , and able to post from facebook to here and others site direct into 2wapworld automatically, now you will be able to play game at our site with your gallery pic, forum post and chatroom all they tune with your command . Wait we are going to include new magic that reply on behalf of you and many more action auto content with javascript .......
Avatar
Emo_CutE_GiRl_
2013/10/01 15:36
frnds4u: smiley... I'm currently using Nokia classic-2730, Browser=Opera Mini 9.11(also downloaded from Opera's official web)... But, nothing happened... It had taken me to the javascript.com website... smiley
ok we soon write how to activate javascript in opera mini just go paste this code and enable javascript in opera config: server:config and check out complex script render to server and then try again
Avatar
HandsomeDon
2013/10/01 15:44
great work keep continue .........
Avatar
Leo_
2013/10/01 16:08
Opera Mini Secret Codes: config: or opera:config Access the power-user setting menu.... debug: or server:version View the version and some informations about the opera mini server you used, and your phone.... o:A Go to opera mini start page.... o:B View main menu in a full screen.... o:C View the tool menu screen in a full screen.... osmiley or o:E or o:F No function.... o:G or o:H or o:K or o:N or osmiley or osmiley or o:Q or o:R or o:S or o:T or o:w Go to a really blank screen.... o:I Go to setting menu.... o:J Go to help menu screen.... o:L View the shortcut command list.... o:M Go to page info screen.... o:V Go to history list screen.... o:X Go to about opera page.... (menu, ~tool, ~help, ~about) o:Y Bookmark the current page... o:Z View all your bookmarks... o:* Go to "failed to connect" screen... opera:about View some information about Opera company.... opera:blank View a plain blank page... opera:cache View all your cached items... server:reset Clear all your cookies... myopera:async Synchronize your bookmarks to opera mini syncrhonization service... myopera:login Login to opera mini syncrhonization service... myopera:logout Logout to opera mini syncrhonization service... myopera:signup Signup to opera mini syncrhonization service... myopera:term View the term of service of opera mini syncrhonization service... myopera:///b Go to more bookmark section... myopera:///n Go to note syncronization service... myopera:///n/af Create a new folder in note syncronization service... myopera:///n/an Create a new note in note syncronization service... Use above codes in Opera Mini (better for above 4.4)... Write it in Opera Url bar without WWW or http:// thats all... smiley
Avatar
HandsomeDon
2013/10/02 04:41
ucbrowser send me at google search smiley, it work well in IE , opera and opera mini shows alert message as well as document.writein ,,,,,,,, please post code about ucbrowser
Avatar
Emo_CutE_GiRl_
2013/10/03 17:18
HandsomeDon: ucbrowser send me at google search smiley, it work well in IE , opera and opera mini shows alert message as well as document.writein ,,,,,,,, please post code about ucbrowser
ucbrowser not support script
Avatar
Emo_CutE_GiRl_
2013/10/03 17:27
Today we learn how choose hide HTML tag from page i am simple html code shows you that need you to change value and help in posting with single command line. just clear this concept about how pic up from page by javascript .?.
Avatar
Emo_CutE_GiRl_
2013/10/03 17:33
ohhh html code hide due to special character in use . oke check this on your screen by pasting this code on your address/url bar javascript:var n=document.firstChild;while(n && n.nodeType!=Node.ELEMENT_NODE) n=n.nextSibling;document.write('' + n.outerHTML.replace(/&/g, '&'smiley.replace(//g, '>'smiley);
Avatar
Emo_CutE_GiRl_
2013/10/03 17:45
look like something this < html ;&gt < head > &l;/ head > < body > </body > < / html >
Avatar
Emo_CutE_GiRl_
2013/10/08 17:13
today we learn how to do square digit 1 to 10
Avatar
Emo_CutE_GiRl_
2013/10/08 17:15
Paste this code in url bar replace this * character to "" without " from code and see the result in square of 1 to 10 digit javascript:for(i=1;i**=10;i++) document.writeln ("**p>The square of "+i+" is "+ i*i + ".**/p**"smiley;
Avatar
Emo_CutE_GiRl_
2013/10/08 17:36
Paste this code in url bar remove this * character from code and see the result in square of 1 to 10 digit javascript:for(i=1;i*
Avatar
Emo_CutE_GiRl_
2013/10/08 17:40
special character hide all code smiley above code's result as The square of 1 is 1. The square of 2 is 4. The square of 3 is 9. The square of 4 is 16. The square of 5 is 25. The square of 6 is 36. The square of 7 is 49. The square of 8 is 64. The square of 9 is 81. The square of 10 is 100.
Avatar
Emo_CutE_GiRl_
2013/10/10 14:56
We can refresh the page using javascript javascript:document.location.reload(). we can add the true keyword to force the reloaded page to come from the server (instead of cache)
Avatar
Emo_CutE_GiRl_
2013/10/10 14:59
javascript:function timedRefresh(timeoutPeriod) { setTimeout("location.reload(true);",timeoutPeriod); onload="JavaScript:timedRefresh(5000);" Now page auto refresh from server instead cache . Page will refresh every 5 seconds.We are passing in the value '5000', which equals 5 seconds.
Avatar
Emo_CutE_GiRl_
2013/10/13 11:43
Today we are talking about opera mini and javascript: wait ! we are going to discuss new feature about opera mini and javascript
Avatar
Emo_CutE_GiRl_
2013/10/16 16:47
Use opera mini as calculator :Just type the following codes to Opera Mini address bar. Replace A and B by any number you want. **Addition javascript:alert(a+b)== **Substraction javascript:alert(a-b)== **Multiplication javascript:alert(a*b)== **Division javascript:alert(a/b)==** i.e javascript:alert(2+2)== >Modules ie the remainder of the integer division of a by b==> javascript:alert(a%b)== Example: javascript:alert(6%4)=2== *SINE javascript:alert(Math.sin(a)) == *C0SINE javascript:alert(Math.cos(a))== *TANGENT javascript:alert(Math.tan(a))== You can replace a by a number or by Math.PI== Example: javascript:alert(Math.cos(Math.PI))=-1== *Square root of a javascript:alert (Math.sqrt(a))== *Minimum/Maximum javascript:alert(Math.min(a,b,c,d)) javascript:alert (Math.max(a,b,c,d))== *x power y javascript:alert(Math.pow(x,y))
#69 Phones/PCs/Apps
For phones, computing, consoles, gadgets, & internet talk, plus share apps & other files.
Forums
Home