Create Sliders with the Range Input in HTML5
How to Create Sliders with the Range Input in HTML5 HTML5 introduces the new range type of input.<input type=”range”> Most notably, it can receive min, max, step, and value attributes, among others. Though only Opera seems to…
Creating Modal Window or Highslide window using HTML5
Creating Modal Window or Highslide window using HTML5 The modal window is one of the most common UI that we can find in websites. It is commonly used to carry a subscription form, uploading forms (like the one in WordPress), displaying notifications and…
Organizing and Sorting CSS
Organizing and Sorting CSS Compared to other web-related languages, CSS is relatively straightforward and easy to write. But at the same time, it is also hard to organize, particularly when it comes to codes that consist of thousands of lines.…
Add or Remove HTML classes in Jquery
Add or Remove HTML classes in Jquery Adding new HTML class is a no-brainer You can do this with jQuery. This example function below will add and remove my-new-class to the <div>. // ## add class…
How to write code in BASIC Programming Languages
How to write code in BASIC Programming Languages 10 CLS 20 PRINT “Hello, world!” 30 PRINT “I’m learning about commands in BASIC.” 40 PRINT “This text is being printed via the PRINT command.” 50 PRINT “On…
Tips to Update your Internal iPhone Apps Remotely without Developer Account
Tips to Update your Internal iPhone Apps Remotely without Developer Account For MAC 1-If you have an existing version of the application, you must first delete it; either directly from your Apple device or from the “Applications” section of…
Deploy iPhone Apps Through Xcode
Deploy iPhone Apps Through Xcode Open Keychain Access on your MAC System Create a Certificate (Keychain Acces -> Certificate Assistant -> Create a Certificate) Go to Category (Left Pane of your Keychain Access) Click on My certificates (If needed…
eCommerce Design Mistakes That You Should Try To Avoid
eCommerce Design Mistakes That You Should Try To Avoid There are tons of mistakes that online retailers make every day, all of them avoidable with a little careful planning. And even if you’re already committing some of these mistakes, most of them are…
Tips to Create WordPress Widgets
Tips to Create WordPress Widgets WordPress Widgets – For a beginner in wordpress its easy to develop a website or blog, but its a little bit difficult to get a proper widget as per our requirement.For this either user is hired a professional or…
Tips for Database ConnectionStrings of Various Provider
Tips for Database ConnectionStrings of Various Provider Microsoft SQL Server // ODBC DSN using System.Data.Odbc; OdbcConnection conn = new OdbcConnection(); conn.ConnectionString = “Dsn=DsnName;” + “Uid=UserName;” +…