Posts by Lucas Franco • 101 points
2 posts
-
0
votes2
answers573
viewsA: Change image according to screen resolution
You can place a call to your function within the $(window).resize(function() { ... });. I suggest using document.body.scrollWidth instead of $(window).width() because the first takes the width from…
-
0
votes2
answers368
viewsA: Select dynamic as you type in a Textbox
If this table doesn’t have too much record, I think Mario’s idea is a good one. You can play everything in a json and save it to html. If not, you can make an ajax while the guy type: var $input =…