Posts

Will you fight for Priyanka Reddy? Priyanka Reddy murder - Time to fight back!

Image
Are women safe in India? 27-year-old veterinarian raped and murdered, charred body found   The scaring sexual assault and burning alive of a young veterinary doctor has shocked the India. Justice for Dr. Priyanka Reddy Here is the full  story As People are saying, that four people had already planned the crime after they had noticed that the  veterinary doctor  had parked her two-wheeler at the Tondu pally toll plaza. Those four people assumed that the doctor(Priyanka Reddy) would come to pick it up later in the evening or at night. Accused then punctured the tyre. Hyderabad Doctor Murder Case As Priyanka Reddy was coming to home from work, after 8:00 pm to pick her Scooty, she noticed a tyre is punctured or flat. She immediately called her sister and said all these thing, who suggested that she leave her Scooty on the same place and take a cab home. Before she could do anything, two men asked her to help, who offered to take her vehicle for repair. Lady

How to use set_select on a multiple select box in codeigniter?

This is an example of multi select box in codeigniter <select multiple class="form-control" name="city[]" id="city" style="height: 123px !important;">          <?php $cities = getCitieslist();          foreach ($cities as $city) {          ?>                   <option value="<?php echo $city->id?>" <?php if(@in_array($city->id, set_value('city[]'))): ?> selected="selected"<?php endif; ?>>                          <?php echo  $city->fk_name.' - '.$city->description?>                  </option> <?php  } ?> </select> You can take a look above code or In simple code you can select the multiple value <?php if(@in_array($city->id, set_value('city[]'))): ?> selected="selected"<?php endif; ?> Lots of people search above term like how to use set_value for multi select box in codeigniter

How to hide all rows with one ID in JavaScript?

You can hide all rows with same id via this code. Or you can take any action on all element which has the same id. const elementsList = document.querySelectorAll("#hideornot"); const elementsArray = [...elementsList]; elementsArray.forEach(element => {     element.style.display = "none"; // change according your need });

How to read query string value with JavaScript?

To read query string value from the current url with javascript you need to add a function in your head or body section. function getQueryStringValue ( key ) { return decodeURIComponent ( window . location . search . replace ( new RegExp ( "^(?:.*[&\\?]" + encodeURIComponent ( key ). replace ( /[\.\+\*]/ g , "\\$&" ) + "(?:\\=([^&]*))?)?.*$" , "i" ), "$1" )); } Then you can alert or console the value of your query string. Like you have this url in your query string www.example.com/word/?key=value now you can get the value of key string like this. console . log ( getQueryStringValue ( "key" )); or you can alert this alert( getQueryStringValue ( "key" ) );

How to get Redmi Note 5 Pro MIUI 9.5.6 update?

Confirmed! You will get  MIUI 9.5.6 update in your redmi note 5 pro. Redmi Note 5 Pro MIUI 9.5.6 Update Based on Android 8.1 Oreo Announced If you are not getting the update then you can change your  region to Russia than u will got 8.1 update ... On the spot. if you do not know how to change region in redmi note 5 pro then go to setting>additional settings>Region the select country as Russia. Then go to About Phone and check again you will get update. After Update your phone you can change your redmi note 5 pro region back to India. Do not forget to comment in the post if this works. Thanks :)

How to get oreo update in redmi note 5 pro?

Confirmed! You will get Oreo and  MIUI 9.5.6 update in your redmi note 5 pro. Redmi Note 5 Pro MIUI 9.5.6 Update Based on Android 8.1 Oreo Announced If you are not getting the update then you can change your  region to Russia than u will got 8.1 update ... On the spot. if you do not know how to change region in redmi note 5 pro then go to setting>additional settings>Region the select country as Russia. Then go to About Phone and check again you will get update. After Update your phone you can change your redmi note 5 pro region back to India. Do not forget to comment in the post if this works. Thanks :) Redmi note 5 pro Oreo update Question: I did not get Oreo Update in Redmi Note 5 Pro? Question: How to get Oreo Update in my Redmi Note 5 Pro? Question: How to get MIUI 9.5.6  Update in my Redmi Note 5 Pro? Question: How to get Oreo and MIUI 9.5.6  Update in my Redmi Note 5 Pro? Question: Not getting MIUI 9.5.6.0 Globle stable Oreo update on Redmi note

Wordpress not showing image on firefox showing display none in image css style

Wordpress not showing image on firefox showing display none in image css style Wordpress not showing image or it is showing under image  style="display: none !important; . If you try to remove it and again it add the display:none in your image. Here is the solution. Firefox only loads some images or not showing any image, while other browsers load them all Here is the solution: If you are using Firefox with AdBlock Plus Extension in your browser? If yes, try to disable it and try again. I think that is the proble. If this works, Do not forget to comment on this post