Wednesday, October 29, 2014
4:22 PM
| Posted by
Unknown
|
Disadvantages of JavaScript - YouTube
Published on Oct 29, 2014 Link for all dot net and sql server video tutorial playlists http://www.youtube.com/user/kudvenkat... Link for slides, code samples and text version of the video http://csharp-video-tutorials.blogspo... In this video we will discuss the disadvantages or downsides of using JavaScript. There are two main disadvantages of JavaScript. Security : JavaScript runs on the client machine. So a malicious user may use Javascript to do a variety of things like tracking your browsing history, stealing passwords etc. This is one of the main reasons why people disable JavaScript. Browser Compatibility : Not all browsers treat the same piece of JavaScript in the same manner. This means the functionality and the user interface may vary from browser to browser. That is why cross-browser testing is very important. However, with JavaScript libraries like jQuery Browser Compatibility is no longer a major issue. JavaScript Browser Compatibility Examples Example 1 : innerText property is supported in IE & Chrome, but not in Firefox. This means the ValidatForm() JavaScript function that we worked with in Part 1, will only work in IE & Chrome but not in Firefox. function ValidatForm() { var ret = true; if (document.getElementById("txtFirstName").value == "") { document.getElementById("lblFirstName").innerText = "First Name is required"; ret = false; } else { document.getElementById("lblFirstName").innerText = ""; } if (document.getElementById("txtLastName").value == "") { document.getElementById("lblLastName").innerText = "Last Name is required"; ret = false; } else { document.getElementById("lblLastName").innerText = ""; } if (document.getElementById("txtEmail").value == "") { document.getElementById("lblEmail").innerText = "Email is required"; ret = false; } else { document.getElementById("lblEmail").innerText = ""; } return ret; } For the above JavaScript function to work in all the browsers that is in IE, Chrome & Firefox, replace innerText property with textContent as shown below. function ValidatForm() { var ret = true; if (document.getElementById("txtFirstName").value == "") { document.getElementById("lblFirstName").textContent = "First Name is required"; ret = false; } else { document.getElementById("lblFirstName").textContent = ""; } if (document.getElementById("txtLastName").value == "") { document.getElementById("lblLastName").textContent = "Last Name is required"; ret = false; } else { document.getElementById("lblLastName").textContent = ""; } if (document.getElementById("txtEmail").value == "") { document.getElementById("lblEmail").textContent = "Email is required"; ret = false; } else { document.getElementById("lblEmail").textContent = ""; } return ret; } Example 2 : The following JavaScript function ddlGenderSelectionChanged() works in Chrome and Firefox but not in Internet Explorer. [%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Demo.WebForm1" %] [!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml...] [html xmlns="http://www.w3.org/1999/xhtml"] [head runat="server"] [title][/title] [script type="text/javascript" language="javascript"] function ddlGenderSelectionChanged() { alert('You selected ' + ddlGender.value); } [/script] [/head] [body] [form id="form1" runat="server"] [div] [select id="ddlGender" onchange="ddlGenderSelectionChanged()"] [option]Male[/option] [option]Female[/option] [/select] [/div] [/form] [/body] [/html] For the JavaScript function to work in all browsers (Chrome, Firefox & Internet Explorer) it needs to be modified as shown below. [script type="text/javascript" language="javascript"] function ddlGenderSelectionChanged() { alert('You selected ' + document.getElementById('ddlGender').value); } [/script]
Subscribe to:
Post Comments
(Atom)
Welcome to my Blog!
Bine ati venit pe blogul nostru.
Cand nu sunt pe blog calatorim!!!
When I'm not blogging, I'm traveling :-)
Email me atGuran
Search
Blogroll
© 2014 by Guran Cosmin.
You're welcome to link to this site or use a single image and brief description to link back to any post. Republishing posts in their entirety is prohibited without permission.
Pictures
Become a Fan
Find Us On Facebook
Contact Form
Video
720x90 AdSpace
Recent Videos
Movie
http://youtu.be/Yj0G5UdBJZw
guran. Powered by Blogger.
Wikipedia
Search results
Popular Posts
-
Tare !!!(guta mititel ) continuare
-
#unuro The Google Black Holes Code: inurl:"view.asp?page=" intext:"plymouth" >>Ok what this code does? So thi...
-
You can press these buttons on your keyboard to use Facebook faster. j , k — Scroll between News Feed stories p — Post a new status l — Li...
-
//// What is DNS ///// Did you know you could be connected to facebook.com – and see facebook.com in your web browser’s address bar – whil...
-
10 Free Keyloggers to monitor your Local PC or Laptop! Here is an exclusive list of top 10 free local keyloggers. However If you are plannin...
-
Your blog is your personal online diary which combines the text, images and other media, and links to other blogs, web p...
-
What is Role Of Cookie,types, uses, setting and Privacy Concerns About Cookies What is Role Of Cookie,types, uses, setting and Privacy Conce...
-
(5) KING OF HACKERS How to Lock Drive of Remote Windows 10/8/7 Victim PC https://www.youtube.com/watch?v=4CgNDXKXxVo Facebook fan page : htt...
-
What is a VPN and how does it work? A VPN or Virtual Private Network is a method used to add security and privacy to private and public ne...
-
(5) For Indians! Happy Diwali in Batch Style! :P ;)... - Legendary Hacking Learners For Indians! Happy Diwali in Batch Style! @echo off colo...
Followers
Contributors
Archive
-
▼
2014
(1156)
-
▼
October
(494)
- https://www.youtube.com/watch?v=hKROVKDIuDo فەرموو...
- (84) Facebook11 Useful Cloud Computing Tutorials h...
- (29) Pure Hacking - @@@ FIND USERNAMES + PASSWORDS...
- Encryption Server Ngerat Klein # compiler skips Pr...
- (99) FacebookCold Cream + Cornstarch + Food Colori...
- (225) FacebookDIY Fake Blood DIY Face Paint DIY Va...
- (167) FacebookWhat is a penetration test? What is ...
- (61) Facebook7 Places That Beginner Hackers Will F...
- (137) Facebook10 HTML5, CSS3 Tricks That Web Geeks...
- (131) Facebookhey guys! I'm back with a brand new ...
- (122) Facebook50 Open Source Software For Your Win...
- (2) wikiHow - wikiHow added a new photo.Happy Hall...
- (12) Google as A Hacking Tool Global search engine...
- (46) FacebookKali Tools List with Short Descriptio...
- (39) FacebookGoogle as A Hacking Tool Global searc...
- (17) new magic code @*[223317557774374:] remove * ...
- (12) Guys recently we explained what is Penetratio...
- (142) Facebook200+ Videos That Will Make You A Mas...
- (100) Facebookساب paypal.. حساب بنكى 206 دولار Ema...
- (176) FacebookTop free PC programs everyone should...
- (179) FacebookDay 31. Last minute DIY Halloween Co...
- (15) Nokia Mobiles Secret Codes :... - Cybercells ...
- (127) Facebook10 Powerful SQL Injection Tools That...
- Interesting facts about browsers - YouTubePublishe...
- (135) Facebook50 Free System And Network Admin Too...
- Cracking WPA & WPA2 key with Aircrack-ng on Kali L...
- (50) FacebookCracking WPA & WPA2 key with Aircrack...
- (237) FacebookGo Here And Copy All the Codes >>>ht...
- (144) FacebookHOW TO IDENTIFY FAKE FACEBOOK ACCOUN...
- (108) Facebook8 Of The Best Free Proxy Websites Fo...
- (111) FacebookHere Are Top 20 Hacking Forums! http...
- (106) FacebookFirst on GAE Club Exclusive Android ...
- (128) FacebookYes, Google Can Be Used For Hacking ...
- (115) Facebook"Would you like some cheese with tha...
- Say Hello To The World
- Blog To Build Relations
- What is a Blog?
- Facebook Tricks
- Incredible Google
- programming
- (116) Facebook@@@ AVOID FRIEND REQUEST BLOCK ...!!...
- Halloween inspiration
- (3) wikiHow - wikiHow added a new photo.wikiHow In...
- (56) FacebookHow To Write Your #Name In Stylish...
- (321) FacebookAnonymous DDOS Tool! https://filetea...
- (145) FacebookHacking BSNL Broadband Internet spee...
- (116) FacebookProxy Clé Orange ^^ Telecom ^^ Tunis...
- (207) Facebook((((Bl@cK $H@rK H@cK3r))))))))))) Fi...
- (195) FacebookLo g India Ki Security Camers ki Sit...
- (127) FacebookLo g India Ki Security Camers ki Sit...
- Cr4x3r b1k4$h What is aobbfile and how do I open...
- (227) FacebookHow to Create Blog Templates Without...
- (208) FacebookLo g India Ki Security Camers ki Sit...
- (113) FacebookCVE-2014-4877: Wget FTP Symlink Atta...
- (101) FacebookHow To bypass sms verification on we...
- What is Role Of Cookie,types, uses, setting and Pr...
- (197) Facebookhttp://www.helpever.net/adminLogin.p...
- (3) #11 [Share một số con SHELL thông dụng ]... - ...
- (99) Make Some Useful & Dangerous Viruses In... - ...
- (120) FacebookTop 10 Android Apps That Turn Your P...
- (5) Five steps to make stay hidden on the internet...
- (33) >>>> TOP WORLD Hackers <<<< You can actually....
- (31) >>>> TOP WORLD Hackers <<<< You can actually....
- (5) TOP WORLD hackers#Admin >>Cookie Stealing At...
- Disadvantages of JavaScript - YouTubePublished on ...
- ███████▓█████▓▓╬╬╬╬╬╬╬╬▓███▓╬╬╬╬╬╬╬▓╬╬▓█ ████▓▓▓▓╬...
- (100) fb trìçkß grœup bÿ Âbhîñàv#Admin_post How ...
- (3) Heyy guyzz.. Now Im telling u tht How to Bypas...
- IT INFO: Cookie Stealing Attack:Hack Any Account l...
- AndroRAT Full Setup + Clean Download + Port Forwar...
- (12) TRICK2. BREAKING DOWN PARTS BY PARTS Open... ...
- (41) FACT - Timeline PhotosFACT CREATE FACEBOOK PA...
- How To Create Facebook Page Without Name : BY ANUJ...
- (¯`·._.·ha3ker-site·._.·´¯)Hello Friends! Welcome ...
- (5) HACKING AND SECURITYAdd your friends to this g...
- (103) FacebookTop 10 Best C/C++ Compilers And IDEs...
- (101) Facebook________ Open Your Backtrack termina...
- (99) Facebook5 Ways to use linux in windows Linux ...
- (10) Hacking Trick - You cannot convert a facebook...
- (3) Facebookpecial Request to all my dear brother ...
- #Admin >>What are some of the main reasons why ...
- (85) Bypass UAC Protection of Remote Windows PC in...
- (3) All Tech Free - Defraggler PRO With Keys Free ...
- (2) #Admin >>Create Barcodes using Excel<< Steps-....
- (10) How To Hack Windows Admin. Password With the....
- (6) #Admin >>Chat with your friends in MS DOS<< 1)...
- (2) #Admin >>How to remove password from WinRAR......
- (6) FacebookHacking Windows 7 Logon Password Witho...
- (3) Hidden Android Secret Codes :... - Cybercells ...
- #Admin >>What is the difference between... - TOP W...
- Best Youtube Tricks Every Internet User Should... ...
- (65) #Admin >>What does a server do?<< ->>:A... - ...
- (62) Hello Friends. There is a new trick that... -...
- vb.net textbox... - تبادل الخبرات في مجال الحاسبvb...
- (112) FacebookHappy National Chocolate Day! Make H...
- (2) Adobe Photoshop Lightroom v5.6 Multilingual......
- (60) Danger Hackers (Public Hacking Group)Hurrah! ...
- (12) Muslim HackersHACKING without any hardwork bo...
- CREATING SERVER
- (1) CS Server(ADSL) CREATING SERVER 1.Go to... - C...
-
▼
October
(494)
0 comments:
Post a Comment