Jump to content

m_hutchins

Members
  • Posts

    50
  • Joined

  • Last visited

Recent Profile Visitors

2,239 profile views

m_hutchins's Achievements

Newbie

Newbie (1/7)

1

Reputation

  1. ...I've also been trying to adjust how high/tall the isotope-item is set to, but again having no luck.
  2. Hello there, I have a few issues with a page I'm working on. The first is that the buttons at the bottom of some of the product columns are slightly being covered by the below product images. I've been trying to set the height of the product column, thinking that might fix the issue, but I'm having troubles with that as well. Any and all help would be greatly appreciated. Here's the link to the page: https://www.ucswireless.oiw11.com/solutions/p25-two-way-radios.htm Thank you in advance! mh
  3. I actually found that there was a conflict with the code used for the form(s). I am using Machform and they provided different code options. Changed the form code and it all works now. Thanks!
  4. Hello there, I'm having an issue where my site won't stop reloading/refreshing when you initially go to any of the sites pages for the first time. It's like it gets stuck in a loop. It stops after you touch the screen a few times and/or go to another page. It seems to only be happening in Safari in mobile. I've been trying to figure out what might be causing this, but with no luck. Has anyone encountered this problem before? Or have any thoughts on what may be causing this? Here's a video of what happening: https://www.screenmailer.com/v/FQwkawa2W4kEmlg The link to the site is: http://www.allptscomm.oiw11.com Any and all help/thoughts are greatly appreciated! Thanks! mh
  5. First off, I am a newbie. I'm try to make the first accordion tab and heading tab open by default, but keep coming up short. Any and all help would be greatly appreciated! Sample url: https://www.iciwireless.com/industry-solutions-mat/construction.htm So, the "Two-way Radio" accordion and header tab should be open when entering the page. I'm using a DW template with repeatable regions to populate the accordions on a number of pages, which is working, but need the 1st accordion tab open. The last code that I tried was the following: <script> $(document).onload(function(){ $("#accordion1Collapse1").collapse('show'); }); }); </script> No luck there.
  6. I come to you with another yet different focus on input issue. I have a little search form that pop's up with an icon is clicked. I'm trying to get the input to be active when it pops up. Here's the code I'm using for the search form: <div class="search-3" > <a class="search-btn not_click" href="javascript:void(0);">Search Button</a> <div class="search-3-box not-click"> <form action="" method="get" id="theFormID"> <input id="searchbar2" type="text" class="not-click" placeholder="Search" value="" name="s"> </form> <i class="fa fa-search"></i> </div> </div> The site is here: http://matdevsite.oiw11.com/ I'm a newbie, please help! Thanks in advance, mh
  7. Forgive me, I'm a super newbie. I dumped the first part of the id, so that it's only one word/value.
  8. I've been trying to get another modal with a search input to work to see if I can backwards engineer things. I got the second sample to work, but am still having trouble with my initial issue. I've been working on a watered down page here: https://www.goiwt.com/index2.htm The code that I'm trying to use is: <script type="text/javascript"> function setFocusOnSearchBar() { $('#searchbar').focus(); } $("#search").on('shown.bs.modal', function() { setTimeout(setFocusOnSearchBar, 0); }); </script> And I believe this is the code that makes the search modal show/hide: // > Top Search bar Show Hide function by = custom.js =================== // function site_search(){ jQuery('a[href="#search"]').on('click', function(event) { jQuery('#search').addClass('open'); jQuery('#search > form > input[type="search"]').focus(); }); jQuery('#search, #search button.close').on('click keyup', function(event) { if (event.target === this || event.target.className === 'close') { jQuery(this).removeClass('open'); } }); } I feel like I'm SO close to getting this to work properly, any other thoughts and/or suggestions would be greatly appreciated!
  9. I tried it like this: jQuery('#search > form > .input-group > input[type="search"]').focus(); }); Still no luck.
  10. Thanks for the replies! Well, autofocus="autofocus" attribute is working in Chrome but not FF or Edge. I found some info on others having the same issue, but am having a hard time getting any solution to work for me. Ugh!
  11. I can't seem to get it to work. I'm not sure if it's because the form is in a modal??
  12. Side note: I've tried just adding "autofocus" to the input and I'm having no luck.
  13. Hello, I think I'm in the right spot... I have a search "magnifying glass" icon in the main navigation of my site that when clicked a full page search bar pops up. Currently, you have to then click again in the search bar to make it active to start typing. I'm trying to make it so that you don't have to click on the search bar a second time after the search icon has been clicked. So, basically once the icon is clicked and the search pops up, the search bar is active and ready for the user to type. You can view the site here: https://www.goiwt.com Any and all help would be greatly appreciated! Thanks in advanced.
  14. Hello there, I have a page that needs to be username and password protected. I currently have a link that goes to the "login" page and from there when logged in correctly, goes to the desired page. The issue is that is someone has the direct url, they can by pass the login page. Is there a way to pass the typed in username and password and show the desired page if correct or show an error message if not??? Here's the code I'm using on the "login" page: <form name"login"> <input type="text" placeholder="Username" name="userid"> <input type="password" placeholder="Password" name="pswrd"> <input type="button" onclick="check(this.form)" value="Login"> </form> <script language="javascript"> function check(form) { if(form.userid.value == "Perry" && form.pswrd.value == "P911erry") { window.open("http://comprosinc.oiw11.com/ftp-clients/perry-county/index.htm", "_self") } else { alert("The username and password you entered are not correct") } } </script> Any and all help would be greatly appreciated! Thanks in advance, m@
×
×
  • Create New...