javascript - IE7, IE8, IE9 support for Laravel application with Bootstrap for "placeholder" -


i've built laravel 4.2 app sputnikart

with bootstrap v3.2.0 , using website part of portfolio, discovered on 50% of people going website , possibly accessing site using ie7 ie9, , while works on other browsers, goes haywire on ie8.

i've spent on day researching , trying different approaches many problems (added html5shiv.js & respond.js) fix menu collapsing , becoming unworkable , tried using mathias bynens (placeholder.js) file fix placeholders not being visible, did app stopped authenticating in couldn't log in.

i have usual declarations on master.blade

<!--[if lt ie 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->  <!--[if ie 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->  <!--[if ie 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->  <!--[if gt ie 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->  <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1"> ... 

i posting see if can pointers , resources in coping laravel 4.2 app bootstrap ie7 ie9, problems numerous mention

thankx

conditional comments... .ie6 .ie7 .ie8 .form-control::-moz-placeholder { _color: thistle; *color:thistle; color:thistle\9; }

i have similar trouble laravel 4.2 app compatability ie8. site sirai.gim.med.up.pt/index.php/ram/create

it working fine browsers except ie8 , lower versions. dont have declarations in main.blade, should i?

<!doctype html>  <html>  <head>      <title>{{trans('views.title')}}</title>       <meta charset="utf-8">      <meta name="viewport" content="width=device-width, initial-scale=1">      {{html::style('css/main.css')}}  	      {{html::style('http://maxcdn.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css')}}      {{html::style('css/datepicker3.css')}}       {{html::style('css/bootstrap-table.css')}}  	  </head>

tested blade not work in here, 2 did http://validator.w3.org/nu/?doc=http%3a%2f%2fsirai.gim.med.up.pt%2findex.php%2fram%2fcreate

would thankfull support :)

its first time posting in stack overflow registered user, sorry if fail see solution in answers above .


Comments