Here’s a quick and easy way to get a query string from your URL using jquery. Suppose you have the following URL: www.myurl.com?page=mypage. Use the code below to retrieve page=mypage. Of course this can be any name/value pair…
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <script type="text/javascript"> function getQuerystring(key, default_){ if (default_==null) default_=""; key = key.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); var regex = new RegExp("[\\?&]"+key+"=([^&#]*)"); var qs = regex.exec(window.location.href); if(qs == null) return default_; else return qs[1]; } var urlString = getQuerystring('page'); $(document).ready(function(){ if ( urlString == 'mypage' ) { //Do something with jquery here } }); </script> |
One of the most effective inbound marketing strategies available for businesses, online and offline, both in terms of cost of implementation and in overall return on investment (ROI), is blogging. Why has business blogging become so important as an inbound marketing strategy? There are a variety of reasons. Blogging is conversation, it’s personable, and it’s informative. Blogging is attractive for both online and offline (i.e., brick and mortar) businesses because consumers (i.e., customers, clients, and patients) feel they are being told a story rather than sold a product or service; and, no one wants to be “sold!”
Even though no one likes going to the dentist, a career in dentistry (including dental assisting) is a great way to get started. Here are six people who have moved on to other things, but started their professional careers by earning a dental assisting certificate.












Recent Comments