Posted in jquery
3
2:03 am, December 2, 2019

jquery add a click function if the window size is greater than target_width

this function will add a click event to the target if the window size is greater than the target_width

JS

function run_function() {
  var window_width = $( window ).width();
  var my_result = window_width;
  write_result(my_result);
  width_click_load(id = "#target_button", target_width = 800);
  return my_result;
}

// this is a common function just to write the content into the result div
function write_result(result) {
  var result_html = document.getElementById("result");
  result_html.innerHTML = result;
}

// only add a click function if the window size is greater than target_width
function width_click_load(id, target_width = 800) {
  var window_width = $( window ).width();
  if(window_width >= target_width) {
    $(id).click(function(){
        window.location=$(this).find('a').attr('href');
        return false;
    });
  }
}

HTML

<div id='result' class='mb-3 alert alert-primary'>..</div>
<button onclick='run_function();' class='btn btn-primary mb-1'>Window Width</button>
<button id='target_button' class='btn btn-primary mb-1'>
Target Button (this has no default link)
<a href='/view/code/rm6e4/'></a>
</button>

Working Result

..

View Statistics
This Week
11
This Month
37
This Year
0

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code snippits here, mostly for my reference. Also if i find a good site, i usually add it here.

Join me on Substack if you want me to send you a collection of the things i have done or found or read for the week. Or follow me on twitter if you prefer, i dont post much but i probably should!

❤👩‍💻🕹

Random Quote
In this case my anchor this week becomes driving almost 2hrs outside of Atlanta to one of my favorite hard core gyms in the world.. MetroFlex aka The Dungeon. The gym owners turn the heat way up so it becomes a fun sweat box and the gym members just watch from afar and leave me alone. I happily drive myself long distances to find MY ANCHOR. Our anchor allows us to have balance, focus and be as productive as possible. And if you're in the middle of a heavy set and your headphones start to fall off your head, like mine did here.. well.. f*ck the headphones. Let em break and fall. You can always get a new pair, but the iron ain't ever gonna lift itself.
Unknown