[Solved] Check my site in different browser version for mobile friendliness

https://www.google.com/webmasters/tools/mobile-friendly/ You can use this to test mobile friendliness. Here are a few more websites to help: https://validator.w3.org/mobile/ https://validator.w3.org/mobile/ http://mobiletest.me/ – This one lets you choose a device to emulate the browser solved Check my site in different browser version for mobile friendliness

[Solved] Count the number of current posts in Div

Your posts are in ul list. you need to count the length of the li‘s under this ul#postlist [assuming that each li is a post] <ul data-filter=”true” data-filter-placeholder=”Search blog posts…” id=”postlist”> </ul><!– content –> Change your $(‘#postlist’) var currentPost = $(‘#postlist’); with var currentPost = $(‘#postlist li’); $(‘#postlist li’) is what you are looking for, … Read more

[Solved] Addition to Subtraction logic [closed]

Here’s the jsfiddle update to handle subtraction: https://jsfiddle.net/wvary/2u5xtkv2/8/ Function taken from the new fiddle: //—Insert random pizza slices function insertPizzas() { selected = []; result = 0; //—Generate aleatory pieces var rand = 0; while (selected.length < 2) { //—Making sure first number is greater than 0 (0 is the index so it is actually … Read more

[Solved] jquery mobile & php

Here you go, fixed it: PAGE 1: index.html <!DOCTYPE html> <html> <head> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js”></script> <script src=”https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.5/jquery.mobile.min.js”></script> <link rel=”stylesheet” href=”https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.5/jquery.mobile.min.css”> <script type=”text/javascript” src=”http://dev.jtsage.com/cdn/spinbox/latest/jqm-spinbox.min.js”></script> </head> <body> <div data-role=”page”> <h1 id=”header”>IT Cafe</h1> <a href=”#hot” data-role=”button” data-inline=”true” data-icon=”home” data-iconpos=”notext” id=”homeicon” ></a> <a href=”#shop” data-role=”button” data-inline=”true” data-icon=”shop” data-iconpos=”notext” id=”shopicon” ></a> <nav data-role=”navbar”> <ul> <li><a href=”#hot” class=”ui-btn-active ui-state-persist” >Coffee(Hot)</a></li> <li><a href=”#ice” … Read more