pdflyboy
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [Social Sharing Toolkit] [Plugin: Social Sharing Toolkit] Issues with IE9Update: So I just decided to delete Social Sharing Toolkit hand code it:
<h2>Share with your friends</h2> <a href="mailto:?subject=Learning to Fly an Airplane&body=https://tedseastrom.com/fly/" target="_blank"><img src="https://tedseastrom.com/images/email.png"></a> <a href="https://www.facebook.com/sharer.php?u=https://tedseastrom.com/fly" target="_blank"><img src="https://tedseastrom.com/images/facebook.png"></a> <a href="https://twitter.com/share?url=https://tedseastrom.com/fly&text=Description" target="_blank"><img src="https://tedseastrom.com/images/twitter.png"></a> <a href="https://plusone.google.com/_/+1/confirm?hl=en&url=https://tedseastrom.com/fly" target="_blank"><img src="https://tedseastrom.com/images/google.png"></a> <br>
Forum: Fixing WordPress
In reply to: JS function works in Chrome/Firefox but not IE9Figured it out: IE doesn’t support onclick event with select object. Rewrote code as follows, works in all browsers:
<select size="5" style="width:150px" onchange="window.open(this.options[this.selectedIndex].value,'_top')"> <option value="https://127.0.0.1:4001/wordpress/hours/">10,000 Hours</option> <option value="https://127.0.0.1:4001/wordpress/52/">Area 52</option> [etc] </select>
Forum: Fixing WordPress
In reply to: JS function works in Chrome/Firefox but not IE9Here’s the code:
<script language="javascript" type="text/javascript"> function go_there(where){ window.location.href = where; } </script> <select size="5" style="width:150px"> <option onclick="go_there('https://127.0.0.1:4001/wordpress/hours/');">10,000 Hours</option>
Viewing 3 replies - 1 through 3 (of 3 total)